StudentCourseHomeworkMapper.xml 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  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. <!--
  4. 这个文件是自动生成的。
  5. 不要修改此文件。所有改动将在下次重新自动生成时丢失。
  6. -->
  7. <mapper namespace="com.ym.mec.web.dal.dao.StudentCourseHomeworkDao">
  8. <resultMap type="com.ym.mec.web.dal.entity.StudentCourseHomework" id="StudentCourseHomework">
  9. <result column="id_" property="id" />
  10. <result column="user_id_" property="userId"/>
  11. <result column="course_homework_id_" property="courseHomeworkId" />
  12. <result column="attachments_" property="attachments" />
  13. <result column="score_" property="score" />
  14. <result column="create_time_" property="createTime" />
  15. <result column="update_time_" property="updateTime" />
  16. <result column="remark_" property="remark" />
  17. <result column="status_" property="status" typeHandler="com.ym.mec.common.dal.CustomEnumTypeHandler"/>
  18. <result column="is_replied_" property="isReplied" typeHandler="com.ym.mec.common.dal.CustomEnumTypeHandler"/>
  19. </resultMap>
  20. <resultMap type="com.ym.mec.web.dal.dto.CourseHomeworkStudentDetailDto" id="CourseHomeworkStudentDetailDto">
  21. <result column="musicGroupName" property="musicGroupName" />
  22. <result column="classGroupName" property="classGroupName"/>
  23. <result column="id_" property="courseHomeworkId" />
  24. <result column="content_" property="content" />
  25. <result column="expiry_date_" property="expiryDate" />
  26. <result column="completed_num_" property="completedNum" />
  27. <result column="expect_num_" property="expectNum" />
  28. <result column="attachments_" property="attachments" />
  29. <result column="score_" property="score" />
  30. <result column="status_" property="status" typeHandler="com.ym.mec.common.dal.CustomEnumTypeHandler"/>
  31. <result column="is_replied_" property="isReplied" typeHandler="com.ym.mec.common.dal.CustomEnumTypeHandler"/>
  32. </resultMap>
  33. <!-- 根据主键查询一条记录 -->
  34. <select id="get" resultMap="StudentCourseHomework" >
  35. SELECT * FROM student_course_homework WHERE id_ = #{id}
  36. </select>
  37. <!-- 全查询 -->
  38. <select id="findAll" resultMap="StudentCourseHomework">
  39. SELECT * FROM student_course_homework ORDER BY id_
  40. </select>
  41. <!-- 向数据库增加一条记录 -->
  42. <insert id="insert" parameterType="com.ym.mec.web.dal.entity.StudentCourseHomework" useGeneratedKeys="true" keyColumn="id" keyProperty="id">
  43. <!--
  44. <selectKey resultClass="int" keyProperty="id" >
  45. SELECT SEQ_WSDEFINITION_ID.nextval AS ID FROM DUAL
  46. </selectKey>
  47. -->
  48. INSERT INTO student_course_homework (id_,user_id_,course_homework_id_,attachments_,score_,create_time_,update_time_,remark_,status_,is_replied_) VALUES(#{id},#{userId},#{courseHomeworkId},#{attachments},#{score},now(),now(),#{remark},#{status,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},#{isReplied,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler})
  49. </insert>
  50. <insert id="batchInsertStudentCourseHomeworkRecord" parameterType="java.util.List" useGeneratedKeys="true" keyColumn="id_">
  51. INSERT INTO student_course_homework (user_id_,course_homework_id_,attachments_,score_,create_time_,update_time_,remark_,status_,is_replied_)
  52. VALUE
  53. <foreach collection="list" item="homework" separator=",">
  54. (#{homework.userId},#{homework.courseHomeworkId},#{homework.attachments},#{homework.score},now(),now(),#{homework.remark},#{homework.status,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},#{homework.isReplied,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler})
  55. </foreach>
  56. </insert>
  57. <!-- 根据主键查询一条记录 -->
  58. <update id="update" parameterType="com.ym.mec.web.dal.entity.StudentCourseHomework">
  59. UPDATE student_course_homework
  60. <set>
  61. <if test="id != null">
  62. id_ = #{id},
  63. </if>
  64. <if test="courseHomeworkId != null">
  65. course_homework_id_ = #{courseHomeworkId},
  66. </if>
  67. <if test="updateTime != null">
  68. update_time_ = #{updateTime},
  69. </if>
  70. <if test="score != null">
  71. score_ = #{score},
  72. </if>
  73. <if test="attachments != null">
  74. attachments_ = #{attachments},
  75. </if>
  76. <if test="createTime != null">
  77. create_time_ = #{createTime},
  78. </if>
  79. <if test="remark != null">
  80. remark_ = #{remark},
  81. </if>
  82. <if test="status != null">
  83. status_ = #{status,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},
  84. </if>
  85. <if test="isReplied != null">
  86. is_replied_ = #{isReplied,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},
  87. </if>
  88. </set> WHERE id_ = #{id}
  89. </update>
  90. <!-- 根据主键删除一条记录 -->
  91. <delete id="delete" >
  92. DELETE FROM student_course_homework WHERE id_ = #{id}
  93. </delete>
  94. <resultMap type="com.ym.mec.web.dal.dto.CourseHomeworkListDto" id="CourseHomeworkDto">
  95. <result column="id_" property="id" />
  96. <result column="course_schedule_id_" property="courseScheduleId" />
  97. <result column="content_" property="content" />
  98. <result column="create_time_" property="createTime" />
  99. <result column="start_class_time_" property="startClassTime" />
  100. <result column="music_group_id_" property="musicGroupId" />
  101. <result column="music_group_name_" property="musicGroupName" />
  102. <result column="class_group_id_" property="classGroupId" />
  103. <result column="class_group_name_" property="classGroupName" />
  104. <result column="completed_num_" property="completedNum" />
  105. <result column="expect_num_" property="expectNum" />
  106. <result column="next_class_date_" property="expiryDate" />
  107. <result column="remark_" property="remark" />
  108. <result column="status_" property="status" typeHandler="com.ym.mec.common.dal.CustomEnumTypeHandler"/>
  109. <result column="is_replied_" property="isReplied" typeHandler="com.ym.mec.common.dal.CustomEnumTypeHandler"/>
  110. </resultMap>
  111. <sql id="queryCondition">
  112. <where>
  113. <if test="createTime != null">
  114. DATE_FORMAT(ch.create_time_,"%Y%m%d") = DATE_FORMAT(#{createTime},"%Y%m%d")
  115. </if>
  116. <if test="musicGroupId != null">
  117. and ch.music_group_id_ = #{musicGroupId}
  118. </if>
  119. <if test="classGroupId != null">
  120. and ch.class_group_id_ = #{classGroupId}
  121. </if>
  122. <if test="userId != null">
  123. and sch.user_id_ = #{userId}
  124. </if>
  125. </where>
  126. </sql>
  127. <!-- 分页查询 -->
  128. <select id="queryPage" resultMap="CourseHomeworkDto" parameterType="map">
  129. SELECT
  130. ch.*,
  131. mg.name_ music_group_name_,
  132. cg.name_ class_group_name_,
  133. temp.next_class_date_,
  134. sch.remark_,
  135. sch.status_,
  136. sch.is_replied_
  137. FROM student_course_homework sch
  138. LEFT JOIN course_homework ch ON sch.course_homework_id_=ch.id_
  139. LEFT JOIN course_schedule cs ON ch.course_schedule_id_=cs.id_
  140. LEFT JOIN music_group mg ON ch.music_group_id_=mg.id_
  141. LEFT JOIN class_group cg ON ch.class_group_id_=cg.id_
  142. LEFT JOIN (SELECT
  143. class_group_id_,
  144. MIN(CONCAT( class_date_, ' ', start_class_time_ )) next_class_date_
  145. FROM
  146. course_schedule
  147. WHERE CONCAT( class_date_, ' ', start_class_time_ )>now()
  148. GROUP BY class_group_id_) temp ON ch.class_group_id_=temp.class_group_id_
  149. <include refid="queryCondition"/>
  150. ORDER BY ch.id_
  151. <include refid="global.limit"/>
  152. </select>
  153. <!-- 查询当前表的总记录数 -->
  154. <select id="queryCount" resultType="int">
  155. SELECT COUNT(*) FROM student_course_homework sch
  156. <include refid="queryCondition"/>
  157. </select>
  158. <select id="findCourseHomeworkStudentDetail" resultMap="CourseHomeworkStudentDetailDto">
  159. SELECT
  160. mg.name_ musicGroupName,
  161. cg.name_ classGroupName,
  162. ch.id_ courseHomeworkId,
  163. ch.content_,
  164. ch.expiry_date_,
  165. ch.completed_num_,
  166. ch.expect_num_,
  167. sch.attachments_,
  168. sch.score_,
  169. sch.status_,
  170. sch.is_replied_
  171. FROM
  172. course_homework ch
  173. LEFT JOIN student_course_homework sch ON ch.id_=sch.course_homework_id_
  174. LEFT JOIN music_group mg ON ch.music_group_id_=mg.id_
  175. LEFT JOIN class_group cg ON ch.class_group_id_=cg.id_
  176. WHERE ch.course_schedule_id_=#{courseScheduleID} AND sch.user_id_=#{userID}
  177. </select>
  178. <select id="constructInitialStudentHomeworkRecords" resultMap="StudentCourseHomework">
  179. SELECT
  180. #{courseHomeworkID} course_homework_id_,
  181. sa.user_id_,
  182. 0 status_,
  183. 0 is_replied_
  184. FROM
  185. student_attendance sa
  186. WHERE
  187. sa.course_schedule_id_ = #{courseScheduleID}
  188. AND status_ = "NORMAL"
  189. </select>
  190. </mapper>