| | |
| | | package com.mindskip.xzs.repository; |
| | | |
| | | import com.mindskip.xzs.domain.Department; |
| | | import com.mindskip.xzs.domain.ExamPaper; |
| | | import com.mindskip.xzs.domain.ExamPaperAnswer; |
| | | import com.mindskip.xzs.domain.other.KeyValue; |
| | | import com.mindskip.xzs.domain.User; |
| | | import com.mindskip.xzs.domain.other.KeyValue; |
| | | import com.mindskip.xzs.domain.vo.UpdateDeptAdminVO; |
| | | import com.mindskip.xzs.domain.vo.UserVO; |
| | | import com.mindskip.xzs.viewmodel.admin.paper.ExamPaperGradeQuery; |
| | | import com.mindskip.xzs.viewmodel.admin.user.UserPageRequestVM; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.security.core.parameters.P; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | void clearDeptAdmin(List<Integer> userIds, @Param("deptId") Integer deptId); |
| | | |
| | | User getUserByExam(ExamPaper examPaper); |
| | | |
| | | void updateUserDeptAdmin(UpdateDeptAdminVO form); |
| | | |
| | | void cancelUserDeptAdmin(UpdateDeptAdminVO form); |
| | | |
| | | List<Integer> getDeptAdminIds(Integer id); |
| | | |
| | | List<Department> getDeptAdmins(Integer id); |
| | | } |