Commit 0a2f31e3 by 徐高华

url

parent 3cbed4b9
......@@ -31,6 +31,7 @@ public class GroupChatDataController {
@Autowired
private GroupChatDataApiService groupChatDataApiService;
@RequestMapping("list-total")
public RestResponse<Object> listTotalData(ChatDataSearchQDTO qdto) {
WebLoginDTO loginUser = AuthWebRequestUtil.getLoginUser();
String wxEnterpriseId = loginUser.getWxEnterpriseId();
......@@ -39,6 +40,7 @@ public class GroupChatDataController {
return RestResponse.successResult(resp.getResult());
}
@RequestMapping("list-chat")
public RestResponse<Object> listForChat(ChatDataSearchQDTO qdto) {
WebLoginDTO loginUser = AuthWebRequestUtil.getLoginUser();
String wxEnterpriseId = loginUser.getWxEnterpriseId();
......@@ -47,6 +49,7 @@ public class GroupChatDataController {
return RestResponse.successResult(resp.getResult());
}
@RequestMapping("list-staff")
public RestResponse<Object> listStaffData(ChatDataSearchQDTO qdto, BasePageInfo basePageInfo) {
WebLoginDTO loginUser = AuthWebRequestUtil.getLoginUser();
String wxEnterpriseId = loginUser.getWxEnterpriseId();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment