|
|
|
@ -20,10 +20,10 @@ public interface StudentCleanDao {
|
|
|
|
|
//获取用户列表
|
|
|
|
|
public List<StudentClean> getStudentCleanList(@Param("s_studentid") Integer s_studentid, @Param("s_name") String s_name, @Param("s_dormitoryid") Integer s_dormitoryid, @Param("currentPage") Integer currentPage, @Param("pageSize") Integer pageSize);
|
|
|
|
|
|
|
|
|
|
public int addStudentClean(StudentClean studentclean); //添加宿舍卫生信息
|
|
|
|
|
public int deleteStudentClean(Integer g_id); //删除宿舍卫生信息
|
|
|
|
|
public int updateStudentClean(StudentClean studentclean); //修改宿舍卫生信息
|
|
|
|
|
public StudentClean findStudentCleanById(Integer g_id);
|
|
|
|
|
public int addStudentClean(StudentClean studentclean); //添加学生卫生信息
|
|
|
|
|
public int deleteStudentClean(Integer g_id); //删除学生卫生信息
|
|
|
|
|
public int updateStudentClean(StudentClean studentclean); //修改学生卫生信息
|
|
|
|
|
public StudentClean findStudentCleanById(Integer g_id);// 根据ID查询学生卫生信息
|
|
|
|
|
|
|
|
|
|
public List<StudentClean> getAll();
|
|
|
|
|
public List<StudentClean> getAll();// 获取所有学生卫生信息
|
|
|
|
|
}
|
|
|
|
|