Commit c146ff3c by 徐高华

商户认领

parent 518ef7b7
......@@ -54,11 +54,12 @@ public class GroupChatController {
* @throws
*/
@RequestMapping("set-gic-enterprise")
public RestResponse<Object> save(List<Long> groupChatIdList) {
public RestResponse<Object> save(GroupChatSearchQDTO qdto) {
List<Long> groupChatIdList = qdto.getGroupChatIdList();
WebLoginDTO loginUser = AuthWebRequestUtil.getLoginUser();
String wxEnterpriseId = loginUser.getWxEnterpriseId();
String enterpriseId = loginUser.getEnterpriseId();
this.groupChatApiService.updateChatEnterpriseId(wxEnterpriseId, enterpriseId, null);
this.groupChatApiService.updateChatEnterpriseId(wxEnterpriseId, enterpriseId, groupChatIdList);
return RestResponse.successResult();
}
......
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