| | |
| | | package com.mindskip.xzs.repository; |
| | | |
| | | import com.mindskip.xzs.domain.ExamPaperAnswer; |
| | | import com.mindskip.xzs.domain.other.KeyValue; |
| | | import com.mindskip.xzs.domain.User; |
| | | 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; |
| | |
| | | |
| | | |
| | | User selectByWxOpenId(@Param("wxOpenId") String wxOpenId); |
| | | |
| | | User selectByIdName(@Param("id") Integer id, @Param("userName") String userName); |
| | | |
| | | List<User> getUserByLevel(@Param("userLevel") Integer userLevel); |
| | | |
| | | User getUserByRealName(@Param("realName") String realName); |
| | | |
| | | /** |
| | | * 修改部门管理员标识 |
| | | * @param id |
| | | * @param deptAdmin |
| | | */ |
| | | void updateDeptAdmin(Integer id, String deptAdmin); |
| | | |
| | | |
| | | List<ExamPaperAnswer> getUserByDept(@Param("query") ExamPaperGradeQuery query); |
| | | } |