Просмотр исходного кода

加微记录详情展示优化

zyy 1 месяц назад
Родитель
Сommit
40201a50d7

+ 2 - 0
fs-service/src/main/java/com/fs/company/vo/CompanyVoiceRoboticCallLogAddwxVO.java

@@ -62,5 +62,7 @@ public class CompanyVoiceRoboticCallLogAddwxVO {
 
     private Integer successRecordCount;
 
+    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+    @Excel(name = "执行时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
     private Date addTime;
 }

+ 1 - 3
fs-service/src/main/resources/mapper/company/CompanyVoiceRoboticCallLogAddwxMapper.xml

@@ -148,15 +148,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
             t3.add_time as addTime,
             t4.company_name as companyName,
             t5.nick_name as companyUserName,
-            t6.intention as intention,
-            t7.name as dialogName
+            t6.intention as intention
         from company_voice_robotic_call_log_addwx t1
                  left join company_wx_account t2 on t1.wx_account_id = t2.id
                  left join company_wx_client t3 on t3.id = t1.wx_client_id
                  left join company t4 on t4.company_id = t1.company_id
                  left join company_user t5 on t5.user_id = t2.company_user_id
                  left join company_voice_robotic_wx t6 on t6.robotic_id = t1.robotic_id
-                 left join company_wx_dialog t7 on t7.id = t6.wx_dialog_id
         <where>
             t1.is_we_com = 2
             <if test="logId != null"> and t1.log_id = #{logId}</if>