SystemUpdateMessageNoticeMapper.xml 670 B

123456789101112131415
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="com.xjrsoft.module.system.mapper.SystemUpdateMessageNoticeMapper">
  6. <select id="GetTeacherUserID" resultType="com.xjrsoft.module.system.vo.SystemUpdateMessagePageTempVo">
  7. select t.user_id from base_teacher t
  8. where t.delete_mark = 0
  9. </select>
  10. <select id="GetStudentUserID" resultType="com.xjrsoft.module.system.vo.SystemUpdateMessagePageTempVo">
  11. select t.user_id from base_student t
  12. where t.delete_mark = 0
  13. </select>
  14. </mapper>