| | |
| | | package com.mindskip.xzs.repository; |
| | | |
| | | import com.mindskip.xzs.domain.ExamPaper; |
| | | import com.mindskip.xzs.domain.UserDepartment; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.security.core.parameters.P; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | |
| | | Integer removeByUserId(@Param("userId") Integer userId); |
| | | Integer removeByDepartmentId(@Param("departmentId") Integer departmentId); |
| | | |
| | | UserDepartment selectByUser(Integer id); |
| | | |
| | | void updateUserDepartMent(UserDepartment userDepartment); |
| | | } |