更改时间写入

This commit is contained in:
jie.lu
2025-07-24 11:54:29 +08:00
parent 7c341657e1
commit 5e39b346b8
3 changed files with 3 additions and 3 deletions

View File

@@ -141,7 +141,7 @@ public class TmOdsImRealtimeMessageCurServiceImpl extends ServiceImpl<TmOdsImRea
StringBuffer chatList = new StringBuffer(); StringBuffer chatList = new StringBuffer();
contetnList.forEach(contentItem -> { contetnList.forEach(contentItem -> {
if (item.getMsgTimestamp() == null) { if (item.getMsgTimestamp() == null) {
item.setMsgTimestamp(endTime); item.setMsgTimestamp(contentItem.getMsgTimestamp());
} }
String title = ""; String title = "";
if(ImCustomTypeEnums.CUSTOMER.getCode().equals(contentItem.getCustomerType())){ if(ImCustomTypeEnums.CUSTOMER.getCode().equals(contentItem.getCustomerType())){

View File

@@ -9,7 +9,7 @@
FROM FROM
`tm_corpus_question_report` tcqr `tm_corpus_question_report` tcqr
WHERE tcqr.is_deleted = 0 WHERE tcqr.is_deleted = 0
AND tcqr.msg_timestamp between #{statTime} and #{endTime} AND tcqr.source_corpus_time between #{statTime} and #{endTime}
AND tcqr.main_category = #{mainCategory} AND tcqr.main_category = #{mainCategory}
</select> </select>

View File

@@ -9,7 +9,7 @@
FROM FROM
`tm_corpus_question_report` tcqr `tm_corpus_question_report` tcqr
WHERE tcqr.is_deleted = 0 WHERE tcqr.is_deleted = 0
AND tcqr.msg_timestamp between #{statTime} and #{endTime} AND tcqr.source_corpus_time between #{statTime} and #{endTime}
AND tcqr.main_category = #{mainCategory} AND tcqr.main_category = #{mainCategory}
</select> </select>