|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
package com.supervision.police.service.impl;
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.collection.CollUtil;
|
|
|
|
|
import cn.hutool.core.date.DateUtil;
|
|
|
|
|
import cn.hutool.core.lang.Assert;
|
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
|
import com.alibaba.fastjson.JSON;
|
|
|
|
@ -18,7 +19,6 @@ import com.supervision.police.domain.ModelIndex;
|
|
|
|
|
import com.supervision.police.dto.AnalyseCaseDTO;
|
|
|
|
|
import com.supervision.police.dto.IndexDetail;
|
|
|
|
|
import com.supervision.police.dto.IndexResultQuery;
|
|
|
|
|
import com.supervision.police.dto.caseScore.CaseScoreDetailDTO;
|
|
|
|
|
import com.supervision.police.service.*;
|
|
|
|
|
import com.supervision.police.vo.ChatReqVO;
|
|
|
|
|
import com.supervision.police.vo.ChatResVO;
|
|
|
|
@ -210,7 +210,7 @@ public class ChatServiceImpl implements ChatService {
|
|
|
|
|
public IPage<ConversationResVo> queryUserConversationList(String userId, int page, int size) {
|
|
|
|
|
Assert.notEmpty(userId, "用户id不能为空");
|
|
|
|
|
|
|
|
|
|
return conversationService.queryUserConversationList(userId, new Page<>(page,size));
|
|
|
|
|
return conversationService.queryUserConversationList(userId, DateUtil.offsetDay(DateUtil.date(), -180),null, new Page<>(page,size));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|