客服模块

This commit is contained in:
2025-12-19 14:37:29 +08:00
parent 409e33abb6
commit 5f2301e16c
42 changed files with 3012 additions and 198 deletions

View File

@@ -42,13 +42,6 @@ public interface WorkcaseChatService {
*/
ResultDomain<TbChat> getChatList(TbChat filter);
/**
* 获取聊天分页
* @param pageRequest
* @return 聊天分页
*/
ResultDomain<TbChat> getChatPage(PageRequest<TbChat> pageRequest);
// ========================= 聊天信息管理 ======================
/**

View File

@@ -6,7 +6,7 @@ import org.xyzh.api.workcase.dto.TbWorkcaseProcessDTO;
import org.xyzh.common.core.domain.ResultDomain;
import org.xyzh.common.core.page.PageRequest;
import com.alibaba.fastjson2.JSON;
import com.alibaba.fastjson2.JSONObject;
/**
* 工单服务接口
@@ -77,7 +77,7 @@ public interface WorkcaseService {
* @author yslg
* @since 2025-12-19
*/
ResultDomain<Void> receiveWorkcaseFromCrm(JSON json);
ResultDomain<Void> receiveWorkcaseFromCrm(JSONObject json);
// ====================== 工单处理过程 ======================
/**