LearningGrowthReportMapper.xml 965 B

123456789101112131415161718
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
  3. <mapper namespace="com.ssj.service.mapper.LearningGrowthReportMapper">
  4. <select id="findWeeklyReport4UpdateKnowledgeSituation"
  5. resultType="com.ssj.bean.sys.homework.domain.StudentWeeklyReport">
  6. select * from scon_student_weekly_report
  7. </select>
  8. <select id="findWeeklyReportByVipIdAndSubjectAndBeginDate"
  9. resultType="com.ssj.bean.sys.homework.domain.StudentWeeklyReport">
  10. select * from scon_student_weekly_report where vip_id = #{vipId} and subject = #{subject} and begin_date = #{beginDate}
  11. </select>
  12. <select id="findWeeklyReportByVipIdAndBeginDate"
  13. resultType="com.ssj.bean.sys.homework.domain.StudentWeeklyReport">
  14. select * from scon_student_weekly_report where vip_id = #{vipId} and begin_date = #{beginDate}
  15. </select>
  16. </mapper>