123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE mapper
- PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
- "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="com.slibra.business.mapper.TXinyiChatRecordMapper">
- <resultMap type="TXinyiChatRecord" id="TXinyiChatRecordResult">
- <result property="id" column="id" />
- <result property="sessionId" column="session_id" />
- <result property="type" column="type" />
- <result property="module" column="module" />
- <result property="userId" column="user_id" />
- <result property="showVal" column="show_val" />
- <result property="question" column="question" />
- <result property="answer" column="answer" />
- <result property="warningId" column="warning_id" />
- <result property="counts" column="counts" />
- <result property="isStrong" column="is_strong" />
- <result property="isSatisfied" column="is_satisfied" />
- <result property="isShutdown" column="is_shutdown" />
- <result property="delFlag" column="del_flag" />
- <result property="revision" column="revision" />
- <result property="createBy" column="create_by" />
- <result property="createTime" column="create_time" />
- <result property="updateBy" column="update_by" />
- <result property="updateTime" column="update_time" />
- <result property="remark" column="remark" />
- </resultMap>
- <sql id="selectTXinyiChatRecordVo">
- 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
- </sql>
- <select id="selectTXinyiChatRecordList" parameterType="TXinyiChatRecord" resultMap="TXinyiChatRecordResult">
- <include refid="selectTXinyiChatRecordVo"/>
- <where>
- 1 = 1
- <if test="sessionId != null and sessionId != ''"> and session_id = #{sessionId}</if>
- <if test="type != null "> and type = #{type}</if>
- <if test="module != null "> and module = #{module}</if>
- <if test="userId != null and userId != ''"> and user_id = #{userId}</if>
- <if test="showVal != null and showVal != ''"> and show_val = #{showVal}</if>
- <if test="question != null and question != ''"> and (question like concat('%', #{question}, '%') or show_val like concat('%', #{question}, '%'))</if>
- <if test="answer != null and answer != ''"> and answer = #{answer}</if>
- <if test="warningId != null and warningId != ''"> and warning_id = #{warningId}</if>
- <if test="counts != null "> and counts = #{counts}</if>
- <if test="isStrong != null "> and is_strong = #{isStrong}</if>
- <if test="isSatisfied != null "> and is_satisfied = #{isSatisfied}</if>
- <if test="isShutdown != null "> and is_shutdown = #{isShutdown}</if>
- <if test="revision != null "> and revision = #{revision}</if>
- </where>
- and del_flag = 0 order by counts asc, id desc
- </select>
- <select id="selectTXinyiChatRecordFirstList" parameterType="TXinyiChatRecord" resultMap="TXinyiChatRecordResult">
- <include refid="selectTXinyiChatRecordVo"/>
- <where>
- 1 = 1 and counts = 1
- <if test="sessionId != null and sessionId != ''"> and session_id = #{sessionId}</if>
- <if test="type != null "> and type = #{type}</if>
- <if test="module != null "> and module = #{module}</if>
- <if test="userId != null and userId != ''"> and user_id = #{userId}</if>
- <if test="showVal != null and showVal != ''"> and show_val = #{showVal}</if>
- <if test="question != null and question != ''"> and question = #{question}</if>
- <if test="answer != null and answer != ''"> and answer = #{answer}</if>
- <if test="warningId != null and warningId != ''"> and warning_id = #{warningId}</if>
- <if test="counts != null "> and counts = #{counts}</if>
- <if test="isStrong != null "> and is_strong = #{isStrong}</if>
- <if test="isSatisfied != null "> and is_satisfied = #{isSatisfied}</if>
- <if test="isShutdown != null "> and is_shutdown = #{isShutdown}</if>
- <if test="revision != null "> and revision = #{revision}</if>
- </where>
- and del_flag = 0 order by id desc
- </select>
- <select id="selectTXinyiChatRecordById" parameterType="Long" resultMap="TXinyiChatRecordResult">
- <include refid="selectTXinyiChatRecordVo"/>
- where id = #{id} and del_flag = 0
- </select>
- <insert id="insertTXinyiChatRecord" parameterType="TXinyiChatRecord" useGeneratedKeys="true" keyProperty="id">
- insert into t_xinyi_chat_record
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test="sessionId != null">session_id,</if>
- <if test="type != null">type,</if>
- <if test="module != null">module,</if>
- <if test="userId != null">user_id,</if>
- <if test="showVal != null">show_val,</if>
- <if test="question != null">question,</if>
- <if test="answer != null">answer,</if>
- <if test="warningId != null">warning_id,</if>
- <if test="counts != null">counts,</if>
- <if test="isStrong != null">is_strong,</if>
- <if test="isSatisfied != null">is_satisfied,</if>
- <if test="isShutdown != null">is_shutdown,</if>
- <if test="delFlag != null">del_flag,</if>
- <if test="revision != null">revision,</if>
- <if test="createBy != null">create_by,</if>
- <if test="createTime != null">create_time,</if>
- <if test="updateBy != null">update_by,</if>
- <if test="updateTime != null">update_time,</if>
- <if test="remark != null">remark,</if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test="sessionId != null">#{sessionId},</if>
- <if test="type != null">#{type},</if>
- <if test="module != null">#{module},</if>
- <if test="userId != null">#{userId},</if>
- <if test="showVal != null">#{showVal},</if>
- <if test="question != null">#{question},</if>
- <if test="answer != null">#{answer},</if>
- <if test="warningId != null">#{warningId},</if>
- <if test="counts != null">#{counts},</if>
- <if test="isStrong != null">#{isStrong},</if>
- <if test="isSatisfied != null">#{isSatisfied},</if>
- <if test="isShutdown != null">#{isShutdown},</if>
- <if test="delFlag != null">#{delFlag},</if>
- <if test="revision != null">#{revision},</if>
- <if test="createBy != null">#{createBy},</if>
- <if test="createTime != null">#{createTime},</if>
- <if test="updateBy != null">#{updateBy},</if>
- <if test="updateTime != null">#{updateTime},</if>
- <if test="remark != null">#{remark},</if>
- </trim>
- </insert>
- <update id="updateTXinyiChatRecord" parameterType="TXinyiChatRecord">
- update t_xinyi_chat_record
- <trim prefix="SET" suffixOverrides=",">
- <if test="sessionId != null">session_id = #{sessionId},</if>
- <if test="type != null">type = #{type},</if>
- <if test="module != null">module = #{module},</if>
- <if test="userId != null">user_id = #{userId},</if>
- <if test="showVal != null">show_val = #{showVal},</if>
- <if test="question != null">question = #{question},</if>
- <if test="answer != null">answer = #{answer},</if>
- <if test="warningId != null">warning_id = #{warningId},</if>
- <if test="counts != null">counts = #{counts},</if>
- <if test="isStrong != null">is_strong = #{isStrong},</if>
- <if test="isSatisfied != null">is_satisfied = #{isSatisfied},</if>
- <if test="isShutdown != null">is_shutdown = #{isShutdown},</if>
- <if test="delFlag != null">del_flag = #{delFlag},</if>
- <if test="revision != null">revision = #{revision},</if>
- <if test="createBy != null">create_by = #{createBy},</if>
- <if test="createTime != null">create_time = #{createTime},</if>
- <if test="updateBy != null">update_by = #{updateBy},</if>
- <if test="updateTime != null">update_time = #{updateTime},</if>
- <if test="remark != null">remark = #{remark},</if>
- </trim>
- ,revision = revision + 1
- where id = #{id}
- </update>
- <delete id="deleteTXinyiChatRecordById" parameterType="Long">
- update t_xinyi_chat_record set del_flag = 2,revision = revision + 1 where del_flag = 0 and id = #{id}
- </delete>
- <delete id="deleteTXinyiChatRecordByIds" parameterType="String">
- update t_xinyi_chat_record set del_flag = 2,revision = revision + 1 where del_flag = 0 and id in
- <foreach item="id" collection="array" open="(" separator="," close=")">
- #{id}
- </foreach>
- </delete>
- <!-- 下面是手动新增的sql -->
- </mapper>
|