TeacherOutInRecordMapper.xml 746 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.outint.mapper.TeacherOutInRecordMapper">
  6. <select id="getListByParam" parameterType="com.xjrsoft.module.outint.dto.TeacherOutInRecordDto" resultType="com.xjrsoft.module.outint.entity.TeacherOutInRecord">
  7. SELECT * FROM teacher_out_in_record
  8. WHERE delete_mark = 0
  9. AND record_time between #{dto.startTime} and #{dto.endTime}
  10. AND status = #{dto.status}
  11. AND DATE_FORMAT(record_time, '%Y-%m-%d') = #{dto.queryDate}
  12. AND user_id = #{dto.userId}
  13. ORDER BY record_time ASC
  14. </select>
  15. </mapper>