|
@@ -12,6 +12,7 @@ import com.xjrsoft.module.student.dto.BaseStudentSimpleInfoDto;
|
|
|
import com.xjrsoft.module.student.vo.BaseStudentSompleInfoVo;
|
|
import com.xjrsoft.module.student.vo.BaseStudentSompleInfoVo;
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
+import org.apache.ibatis.annotations.Update;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
|
|
@@ -32,4 +33,7 @@ public interface UserMapper extends MPJBaseMapper<User> {
|
|
|
Page<PersonPageVo> personPage(Page<PersonPageVo> page, @Param("dto") PersonPageDto dto);
|
|
Page<PersonPageVo> personPage(Page<PersonPageVo> page, @Param("dto") PersonPageDto dto);
|
|
|
|
|
|
|
|
List<UserIdDeptNameVo> getTeacherDeptName();
|
|
List<UserIdDeptNameVo> getTeacherDeptName();
|
|
|
|
|
+
|
|
|
|
|
+ @Update("update xjr_user where delete_mark = 0, enabled_mark = 1, modify_user_id = #{modifyUserId}, modify_date = now() where user_id = #{userId}")
|
|
|
|
|
+ Boolean activateUser(@Param("userId") Long userId, @Param("modifyUserId") Long modifyUserId);
|
|
|
}
|
|
}
|