StudentCourseHomeworkReplyMapper.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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.StudentCourseHomeworkReplyDao">
  8. <resultMap type="com.ym.mec.web.dal.entity.StudentCourseHomeworkReply" id="StudentCourseHomeworkReply">
  9. <result column="id_" property="id"/>
  10. <result column="student_course_homework_id_" property="studentCourseHomeworkId"/>
  11. <result column="user_id_" property="userId"/>
  12. <result column="content_" property="content"/>
  13. <result column="create_time_" property="createTime"/>
  14. <result column="parent_id_" property="parentId"/>
  15. </resultMap>
  16. <resultMap id="studentCourseHomeworkComment" type="com.ym.mec.web.dal.dto.StudentCourseHomeworkCommentDto">
  17. <result property="replyId" column="comment_id_"></result>
  18. <result property="userId" column="comment_user_id_"></result>
  19. <result property="userName" column="comment_user_name_"></result>
  20. <result property="content" column="comment_content_"></result>
  21. <result property="createTime" column="comment_time"></result>
  22. </resultMap>
  23. <!-- 根据主键查询一条记录 -->
  24. <select id="get" resultMap="StudentCourseHomeworkReply">
  25. SELECT * FROM student_course_homework_reply WHERE id_ = #{id}
  26. </select>
  27. <!-- 全查询 -->
  28. <select id="findAll" resultMap="StudentCourseHomeworkReply">
  29. SELECT * FROM student_course_homework_reply ORDER BY id_
  30. </select>
  31. <!-- 向数据库增加一条记录 -->
  32. <insert id="insert" parameterType="com.ym.mec.web.dal.entity.StudentCourseHomeworkReply" useGeneratedKeys="true"
  33. keyColumn="id" keyProperty="id">
  34. INSERT INTO student_course_homework_reply
  35. (id_,student_course_homework_id_,user_id_,content_,create_time_,parent_id_)
  36. VALUES(#{id},#{studentCourseHomeworkId},#{userId},#{content},now(),#{parentId})
  37. </insert>
  38. <!-- 根据主键查询一条记录 -->
  39. <update id="update" parameterType="com.ym.mec.web.dal.entity.StudentCourseHomeworkReply">
  40. UPDATE student_course_homework_reply
  41. <set>
  42. <if test="parentId != null">
  43. parent_id_ = #{parentId},
  44. </if>
  45. <if test="studentCourseHomeworkId != null">
  46. student_course_homework_id_ = #{studentCourseHomeworkId},
  47. </if>
  48. <if test="userId != null">
  49. user_id_ = #{userId},
  50. </if>
  51. <if test="content != null">
  52. content_ = #{content},
  53. </if>
  54. </set>
  55. WHERE id_ = #{id}
  56. </update>
  57. <!-- 根据主键删除一条记录 -->
  58. <delete id="delete">
  59. DELETE FROM student_course_homework_reply WHERE id_ = #{id}
  60. </delete>
  61. <delete id="batchDeleteReplys">
  62. delete from student_course_homework_reply where id_ IN
  63. <foreach collection="list" item="id" open="(" close=")" separator=",">
  64. #{id}
  65. </foreach>
  66. </delete>
  67. <sql id="queryCondition">
  68. <where>
  69. <if test="parentID!=null">
  70. schr.parent_id_ = #{parentID}
  71. </if>
  72. <if test="parentID==null">
  73. schr.parent_id_ IS NULL
  74. </if>
  75. <if test="studentCourseHomeworkId != null">
  76. AND schr.student_course_homework_id_=#{studentCourseHomeworkId}
  77. </if>
  78. </where>
  79. </sql>
  80. <!-- 分页查询 -->
  81. <select id="queryPage" resultMap="studentCourseHomeworkComment" parameterType="map">
  82. SELECT
  83. schr.id_ comment_id_,
  84. schr.user_id_ comment_user_id_,
  85. suc.username_ comment_user_name_,
  86. schr.content_ comment_content_,
  87. schr.create_time_ comment_time
  88. FROM
  89. student_course_homework_reply schr
  90. LEFT JOIN sys_user suc ON schr.user_id_=suc.id_
  91. <include refid="queryCondition"/>
  92. <include refid="global.limit"/>
  93. </select>
  94. <!-- 查询当前表的总记录数 -->
  95. <select id="queryCount" resultType="int">
  96. SELECT COUNT(*) FROM student_course_homework_reply schr
  97. <include refid="queryCondition"/>
  98. </select>
  99. <select id="findAllReplyByStudentCourseHomeworkID" resultMap="StudentCourseHomeworkReply">
  100. select id_,IF(parent_id_ IS NULL,0,parent_id_) parent_id_ from student_course_homework_reply where student_course_homework_id_=#{studentCourseHomeworkID}
  101. </select>
  102. </mapper>