wangmiaomiao 10 mesi fa
parent
commit
dffed0e850

+ 3 - 3
slibra-admin/src/main/java/com/slibra/web/controller/business/FrontController.java

@@ -65,7 +65,7 @@ public class FrontController extends BaseController {
      * @param tXinyiChatRecord
      * @return
      */
-    @GetMapping("/bigmodel/qa/list")
+    @GetMapping("/bigmodel/qa/pageList")
     public TableDataInfo qaPageList(TXinyiChatRecord tXinyiChatRecord)
     {
         //获取登录用户信息
@@ -82,7 +82,7 @@ public class FrontController extends BaseController {
      * @param tXinyiChatRecord
      * @return
      */
-    @GetMapping("/bigmodel/qa/list")
+    @GetMapping("/bigmodel/qa/qaListBySessionId")
     public List<TXinyiChatRecord> qaListBySessionId(TXinyiChatRecord tXinyiChatRecord)
     {
         String sessionId = tXinyiChatRecord.getSessionId();
@@ -91,7 +91,7 @@ public class FrontController extends BaseController {
         //获取登录用户信息
         Long userId = SecurityUtils.getUserId();
         tXinyiChatRecord.setUserId(String.valueOf(userId));
-        return tXinyiChatRecordMapper.selectTXinyiChatRecordFirstList(tXinyiChatRecord);
+        return tXinyiChatRecordMapper.selectTXinyiChatRecordList(tXinyiChatRecord);
     }
 
 

+ 3 - 3
slibra-system/src/main/resources/mapper/business/TXinyiChatRecordMapper.xml

@@ -41,14 +41,14 @@
             <if test="counts != null "> and counts = #{counts}</if>
             <if test="revision != null "> and revision = #{revision}</if>
         </where>
-        and del_flag = 0
+        and del_flag = 0 order by id desc
     </select>
 
 
     <select id="selectTXinyiChatRecordFirstList" parameterType="TXinyiChatRecord" resultMap="TXinyiChatRecordResult">
         <include refid="selectTXinyiChatRecordVo"/>
         <where>
-            1 = 1
+            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 != ''"> and module = #{module}</if>
@@ -59,7 +59,7 @@
             <if test="counts != null "> and counts = #{counts}</if>
             <if test="revision != null "> and revision = #{revision}</if>
         </where>
-        and del_flag = 0
+        and del_flag = 0 order by id desc
     </select>
 
     <select id="selectTXinyiChatRecordById" parameterType="Long" resultMap="TXinyiChatRecordResult">