|
@@ -10,10 +10,14 @@
|
|
<result property="type" column="type" />
|
|
<result property="type" column="type" />
|
|
<result property="module" column="module" />
|
|
<result property="module" column="module" />
|
|
<result property="userId" column="user_id" />
|
|
<result property="userId" column="user_id" />
|
|
- <result property="ask" column="ask" />
|
|
|
|
|
|
+ <result property="showVal" column="show_val" />
|
|
|
|
+ <result property="question" column="question" />
|
|
<result property="answer" column="answer" />
|
|
<result property="answer" column="answer" />
|
|
<result property="warningId" column="warning_id" />
|
|
<result property="warningId" column="warning_id" />
|
|
<result property="counts" column="counts" />
|
|
<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="delFlag" column="del_flag" />
|
|
<result property="revision" column="revision" />
|
|
<result property="revision" column="revision" />
|
|
<result property="createBy" column="create_by" />
|
|
<result property="createBy" column="create_by" />
|
|
@@ -24,7 +28,7 @@
|
|
</resultMap>
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectTXinyiChatRecordVo">
|
|
<sql id="selectTXinyiChatRecordVo">
|
|
- select id, session_id, type, module, user_id, ask, answer, warning_id, counts, del_flag, revision, create_by, create_time, update_by, update_time, remark from t_xinyi_chat_record
|
|
|
|
|
|
+ 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>
|
|
</sql>
|
|
|
|
|
|
<select id="selectTXinyiChatRecordList" parameterType="TXinyiChatRecord" resultMap="TXinyiChatRecordResult">
|
|
<select id="selectTXinyiChatRecordList" parameterType="TXinyiChatRecord" resultMap="TXinyiChatRecordResult">
|
|
@@ -35,16 +39,19 @@
|
|
<if test="type != null "> and type = #{type}</if>
|
|
<if test="type != null "> and type = #{type}</if>
|
|
<if test="module != null and module != ''"> and module = #{module}</if>
|
|
<if test="module != null and module != ''"> and module = #{module}</if>
|
|
<if test="userId != null and userId != ''"> and user_id = #{userId}</if>
|
|
<if test="userId != null and userId != ''"> and user_id = #{userId}</if>
|
|
- <if test="ask != null and ask != ''"> and ask = #{ask}</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="answer != null and answer != ''"> and answer = #{answer}</if>
|
|
<if test="warningId != null and warningId != ''"> and warning_id = #{warningId}</if>
|
|
<if test="warningId != null and warningId != ''"> and warning_id = #{warningId}</if>
|
|
<if test="counts != null "> and counts = #{counts}</if>
|
|
<if test="counts != null "> and counts = #{counts}</if>
|
|
|
|
+ <if test="isStrong != null and isStrong != ''"> and is_strong = #{isStrong}</if>
|
|
|
|
+ <if test="isSatisfied != null and isSatisfied != ''"> and is_satisfied = #{isSatisfied}</if>
|
|
|
|
+ <if test="isShutdown != null and isShutdown != ''"> and is_shutdown = #{isShutdown}</if>
|
|
<if test="revision != null "> and revision = #{revision}</if>
|
|
<if test="revision != null "> and revision = #{revision}</if>
|
|
</where>
|
|
</where>
|
|
and del_flag = 0 order by id desc
|
|
and del_flag = 0 order by id desc
|
|
</select>
|
|
</select>
|
|
|
|
|
|
-
|
|
|
|
<select id="selectTXinyiChatRecordFirstList" parameterType="TXinyiChatRecord" resultMap="TXinyiChatRecordResult">
|
|
<select id="selectTXinyiChatRecordFirstList" parameterType="TXinyiChatRecord" resultMap="TXinyiChatRecordResult">
|
|
<include refid="selectTXinyiChatRecordVo"/>
|
|
<include refid="selectTXinyiChatRecordVo"/>
|
|
<where>
|
|
<where>
|
|
@@ -53,10 +60,14 @@
|
|
<if test="type != null "> and type = #{type}</if>
|
|
<if test="type != null "> and type = #{type}</if>
|
|
<if test="module != null and module != ''"> and module = #{module}</if>
|
|
<if test="module != null and module != ''"> and module = #{module}</if>
|
|
<if test="userId != null and userId != ''"> and user_id = #{userId}</if>
|
|
<if test="userId != null and userId != ''"> and user_id = #{userId}</if>
|
|
- <if test="ask != null and ask != ''"> and ask = #{ask}</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="answer != null and answer != ''"> and answer = #{answer}</if>
|
|
<if test="warningId != null and warningId != ''"> and warning_id = #{warningId}</if>
|
|
<if test="warningId != null and warningId != ''"> and warning_id = #{warningId}</if>
|
|
<if test="counts != null "> and counts = #{counts}</if>
|
|
<if test="counts != null "> and counts = #{counts}</if>
|
|
|
|
+ <if test="isStrong != null and isStrong != ''"> and is_strong = #{isStrong}</if>
|
|
|
|
+ <if test="isSatisfied != null and isSatisfied != ''"> and is_satisfied = #{isSatisfied}</if>
|
|
|
|
+ <if test="isShutdown != null and isShutdown != ''"> and is_shutdown = #{isShutdown}</if>
|
|
<if test="revision != null "> and revision = #{revision}</if>
|
|
<if test="revision != null "> and revision = #{revision}</if>
|
|
</where>
|
|
</where>
|
|
and del_flag = 0 order by id desc
|
|
and del_flag = 0 order by id desc
|
|
@@ -74,10 +85,14 @@
|
|
<if test="type != null">type,</if>
|
|
<if test="type != null">type,</if>
|
|
<if test="module != null">module,</if>
|
|
<if test="module != null">module,</if>
|
|
<if test="userId != null">user_id,</if>
|
|
<if test="userId != null">user_id,</if>
|
|
- <if test="ask != null">ask,</if>
|
|
|
|
|
|
+ <if test="showVal != null">show_val,</if>
|
|
|
|
+ <if test="question != null">question,</if>
|
|
<if test="answer != null">answer,</if>
|
|
<if test="answer != null">answer,</if>
|
|
<if test="warningId != null">warning_id,</if>
|
|
<if test="warningId != null">warning_id,</if>
|
|
<if test="counts != null">counts,</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="delFlag != null">del_flag,</if>
|
|
<if test="revision != null">revision,</if>
|
|
<if test="revision != null">revision,</if>
|
|
<if test="createBy != null">create_by,</if>
|
|
<if test="createBy != null">create_by,</if>
|
|
@@ -91,10 +106,14 @@
|
|
<if test="type != null">#{type},</if>
|
|
<if test="type != null">#{type},</if>
|
|
<if test="module != null">#{module},</if>
|
|
<if test="module != null">#{module},</if>
|
|
<if test="userId != null">#{userId},</if>
|
|
<if test="userId != null">#{userId},</if>
|
|
- <if test="ask != null">#{ask},</if>
|
|
|
|
|
|
+ <if test="showVal != null">#{showVal},</if>
|
|
|
|
+ <if test="question != null">#{question},</if>
|
|
<if test="answer != null">#{answer},</if>
|
|
<if test="answer != null">#{answer},</if>
|
|
<if test="warningId != null">#{warningId},</if>
|
|
<if test="warningId != null">#{warningId},</if>
|
|
<if test="counts != null">#{counts},</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="delFlag != null">#{delFlag},</if>
|
|
<if test="revision != null">#{revision},</if>
|
|
<if test="revision != null">#{revision},</if>
|
|
<if test="createBy != null">#{createBy},</if>
|
|
<if test="createBy != null">#{createBy},</if>
|
|
@@ -112,10 +131,14 @@
|
|
<if test="type != null">type = #{type},</if>
|
|
<if test="type != null">type = #{type},</if>
|
|
<if test="module != null">module = #{module},</if>
|
|
<if test="module != null">module = #{module},</if>
|
|
<if test="userId != null">user_id = #{userId},</if>
|
|
<if test="userId != null">user_id = #{userId},</if>
|
|
- <if test="ask != null">ask = #{ask},</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="answer != null">answer = #{answer},</if>
|
|
<if test="warningId != null">warning_id = #{warningId},</if>
|
|
<if test="warningId != null">warning_id = #{warningId},</if>
|
|
<if test="counts != null">counts = #{counts},</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="delFlag != null">del_flag = #{delFlag},</if>
|
|
<if test="revision != null">revision = #{revision},</if>
|
|
<if test="revision != null">revision = #{revision},</if>
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|