首页>代码>spring+spring Mvc+mybatis+layui实现数据表格的增删改查(纯layui实现)>/ssmlayui/src/main/java/service/IStudentService.java
01 | package service; |
02 |
03 | import entity.student; |
04 | import org.apache.ibatis.annotations.Param; |
05 |
06 | import java.util.List; |
07 | import java.util.Map; |
08 |
09 | public interface IStudentService { |
10 | //查询所有学生数据 |
11 | List<student> getAllStu( @Param ( "start" ) int start, @Param ( "limit" ) int limit); |
12 | //删除学生数据 |
13 | int deleteStudent(String id); |
14 | //新增学生数据 |
15 | int addStudent(student student); |
16 | //通过查找学生数据 |
17 | List<student> getStuById(student student); |
18 | //编辑学生数据 |
19 | int editStudentData(student student); |
20 | //批量删除学生数据 |
21 | int batchDeleteStudent(String id[]); |
22 | // 查询出学生数据的总条数 |
23 | int studentCounts(); |
24 | } |

sun丶孙 LV8
2024年4月3日
gecongkai LV8
2023年6月22日
1257592068 LV6
2023年6月13日
微信网友_6260196253601792 LV7
2023年6月7日
111112222333312131 LV4
2022年12月9日
331376387 LV5
2022年12月2日
2511952410 LV9
2022年9月17日
ty5854 LV1
2022年9月12日
lvhongquan LV11
2022年5月4日
xytthy LV3
2022年4月17日