TXinyiChatRecordMapper.xml 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  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.slibra.business.mapper.TXinyiChatRecordMapper">
  6. <resultMap type="TXinyiChatRecord" id="TXinyiChatRecordResult">
  7. <result property="id" column="id" />
  8. <result property="sessionId" column="session_id" />
  9. <result property="type" column="type" />
  10. <result property="module" column="module" />
  11. <result property="userId" column="user_id" />
  12. <result property="showVal" column="show_val" />
  13. <result property="question" column="question" />
  14. <result property="answer" column="answer" />
  15. <result property="warningId" column="warning_id" />
  16. <result property="counts" column="counts" />
  17. <result property="isStrong" column="is_strong" />
  18. <result property="isSatisfied" column="is_satisfied" />
  19. <result property="isShutdown" column="is_shutdown" />
  20. <result property="delFlag" column="del_flag" />
  21. <result property="revision" column="revision" />
  22. <result property="createBy" column="create_by" />
  23. <result property="createTime" column="create_time" />
  24. <result property="updateBy" column="update_by" />
  25. <result property="updateTime" column="update_time" />
  26. <result property="remark" column="remark" />
  27. </resultMap>
  28. <sql id="selectTXinyiChatRecordVo">
  29. select id, session_id, type, module, user_id, show_val, question, answer, warning_id, counts, is_strong, is_satisfied, is_shutdown, del_flag, revision, create_by, create_time, update_by, update_time, remark from t_xinyi_chat_record
  30. </sql>
  31. <select id="selectTXinyiChatRecordList" parameterType="TXinyiChatRecord" resultMap="TXinyiChatRecordResult">
  32. <include refid="selectTXinyiChatRecordVo"/>
  33. <where>
  34. 1 = 1
  35. <if test="sessionId != null and sessionId != ''"> and session_id = #{sessionId}</if>
  36. <if test="type != null "> and type = #{type}</if>
  37. <if test="module != null "> and module = #{module}</if>
  38. <if test="userId != null and userId != ''"> and user_id = #{userId}</if>
  39. <if test="showVal != null and showVal != ''"> and show_val = #{showVal}</if>
  40. <if test="question != null and question != ''"> and (question like concat('%', #{question}, '%') or show_val like concat('%', #{question}, '%'))</if>
  41. <if test="answer != null and answer != ''"> and answer = #{answer}</if>
  42. <if test="warningId != null and warningId != ''"> and warning_id = #{warningId}</if>
  43. <if test="counts != null "> and counts = #{counts}</if>
  44. <if test="isStrong != null "> and is_strong = #{isStrong}</if>
  45. <if test="isSatisfied != null "> and is_satisfied = #{isSatisfied}</if>
  46. <if test="isShutdown != null "> and is_shutdown = #{isShutdown}</if>
  47. <if test="revision != null "> and revision = #{revision}</if>
  48. </where>
  49. and del_flag = 0 order by counts asc, id desc
  50. </select>
  51. <select id="selectTXinyiChatRecordFirstList" parameterType="TXinyiChatRecord" resultMap="TXinyiChatRecordResult">
  52. <include refid="selectTXinyiChatRecordVo"/>
  53. <where>
  54. 1 = 1 and counts = 1
  55. <if test="sessionId != null and sessionId != ''"> and session_id = #{sessionId}</if>
  56. <if test="type != null "> and type = #{type}</if>
  57. <if test="module != null "> and module = #{module}</if>
  58. <if test="userId != null and userId != ''"> and user_id = #{userId}</if>
  59. <if test="showVal != null and showVal != ''"> and show_val = #{showVal}</if>
  60. <if test="question != null and question != ''"> and question = #{question}</if>
  61. <if test="answer != null and answer != ''"> and answer = #{answer}</if>
  62. <if test="warningId != null and warningId != ''"> and warning_id = #{warningId}</if>
  63. <if test="counts != null "> and counts = #{counts}</if>
  64. <if test="isStrong != null "> and is_strong = #{isStrong}</if>
  65. <if test="isSatisfied != null "> and is_satisfied = #{isSatisfied}</if>
  66. <if test="isShutdown != null "> and is_shutdown = #{isShutdown}</if>
  67. <if test="revision != null "> and revision = #{revision}</if>
  68. </where>
  69. and del_flag = 0 order by id desc
  70. </select>
  71. <select id="selectTXinyiChatRecordById" parameterType="Long" resultMap="TXinyiChatRecordResult">
  72. <include refid="selectTXinyiChatRecordVo"/>
  73. where id = #{id} and del_flag = 0
  74. </select>
  75. <insert id="insertTXinyiChatRecord" parameterType="TXinyiChatRecord" useGeneratedKeys="true" keyProperty="id">
  76. insert into t_xinyi_chat_record
  77. <trim prefix="(" suffix=")" suffixOverrides=",">
  78. <if test="sessionId != null">session_id,</if>
  79. <if test="type != null">type,</if>
  80. <if test="module != null">module,</if>
  81. <if test="userId != null">user_id,</if>
  82. <if test="showVal != null">show_val,</if>
  83. <if test="question != null">question,</if>
  84. <if test="answer != null">answer,</if>
  85. <if test="warningId != null">warning_id,</if>
  86. <if test="counts != null">counts,</if>
  87. <if test="isStrong != null">is_strong,</if>
  88. <if test="isSatisfied != null">is_satisfied,</if>
  89. <if test="isShutdown != null">is_shutdown,</if>
  90. <if test="delFlag != null">del_flag,</if>
  91. <if test="revision != null">revision,</if>
  92. <if test="createBy != null">create_by,</if>
  93. <if test="createTime != null">create_time,</if>
  94. <if test="updateBy != null">update_by,</if>
  95. <if test="updateTime != null">update_time,</if>
  96. <if test="remark != null">remark,</if>
  97. </trim>
  98. <trim prefix="values (" suffix=")" suffixOverrides=",">
  99. <if test="sessionId != null">#{sessionId},</if>
  100. <if test="type != null">#{type},</if>
  101. <if test="module != null">#{module},</if>
  102. <if test="userId != null">#{userId},</if>
  103. <if test="showVal != null">#{showVal},</if>
  104. <if test="question != null">#{question},</if>
  105. <if test="answer != null">#{answer},</if>
  106. <if test="warningId != null">#{warningId},</if>
  107. <if test="counts != null">#{counts},</if>
  108. <if test="isStrong != null">#{isStrong},</if>
  109. <if test="isSatisfied != null">#{isSatisfied},</if>
  110. <if test="isShutdown != null">#{isShutdown},</if>
  111. <if test="delFlag != null">#{delFlag},</if>
  112. <if test="revision != null">#{revision},</if>
  113. <if test="createBy != null">#{createBy},</if>
  114. <if test="createTime != null">#{createTime},</if>
  115. <if test="updateBy != null">#{updateBy},</if>
  116. <if test="updateTime != null">#{updateTime},</if>
  117. <if test="remark != null">#{remark},</if>
  118. </trim>
  119. </insert>
  120. <update id="updateTXinyiChatRecord" parameterType="TXinyiChatRecord">
  121. update t_xinyi_chat_record
  122. <trim prefix="SET" suffixOverrides=",">
  123. <if test="sessionId != null">session_id = #{sessionId},</if>
  124. <if test="type != null">type = #{type},</if>
  125. <if test="module != null">module = #{module},</if>
  126. <if test="userId != null">user_id = #{userId},</if>
  127. <if test="showVal != null">show_val = #{showVal},</if>
  128. <if test="question != null">question = #{question},</if>
  129. <if test="answer != null">answer = #{answer},</if>
  130. <if test="warningId != null">warning_id = #{warningId},</if>
  131. <if test="counts != null">counts = #{counts},</if>
  132. <if test="isStrong != null">is_strong = #{isStrong},</if>
  133. <if test="isSatisfied != null">is_satisfied = #{isSatisfied},</if>
  134. <if test="isShutdown != null">is_shutdown = #{isShutdown},</if>
  135. <if test="delFlag != null">del_flag = #{delFlag},</if>
  136. <if test="revision != null">revision = #{revision},</if>
  137. <if test="createBy != null">create_by = #{createBy},</if>
  138. <if test="createTime != null">create_time = #{createTime},</if>
  139. <if test="updateBy != null">update_by = #{updateBy},</if>
  140. <if test="updateTime != null">update_time = #{updateTime},</if>
  141. <if test="remark != null">remark = #{remark},</if>
  142. </trim>
  143. ,revision = revision + 1
  144. where id = #{id}
  145. </update>
  146. <delete id="deleteTXinyiChatRecordById" parameterType="Long">
  147. update t_xinyi_chat_record set del_flag = 2,revision = revision + 1 where del_flag = 0 and id = #{id}
  148. </delete>
  149. <delete id="deleteTXinyiChatRecordByIds" parameterType="String">
  150. update t_xinyi_chat_record set del_flag = 2,revision = revision + 1 where del_flag = 0 and id in
  151. <foreach item="id" collection="array" open="(" separator="," close=")">
  152. #{id}
  153. </foreach>
  154. </delete>
  155. <!-- 下面是手动新增的sql -->
  156. </mapper>