Commit 6910b7a3 by 墨竹

Merge branch 'developer' of http://git.gicdev.com/haoban3.0/haoban-manage3.0 into developer

parents 4667b7a9 b6b084dd
......@@ -2,6 +2,7 @@ package com.gic.haoban.manage.web.controller.test;
import com.gic.haoban.common.utils.HaobanResponse;
import com.gic.haoban.manage.api.service.HandoverOperationApiService;
import com.gic.haoban.manage.api.service.MemberUnionidRelatedApiService;
import com.gic.haoban.manage.web.controller.WebBaseController;
import com.gic.haoban.manage.web.errCode.HaoBanErrCode;
import com.gic.haoban.task.manage.api.service.TaskQuartzCallbackApiService;
......@@ -25,6 +26,9 @@ public class TestTaskController extends WebBaseController {
@Autowired
private HandoverOperationApiService handoverOperationApiService;
@Autowired
private MemberUnionidRelatedApiService memberUnionidRelatedApiService;
@RequestMapping("/groupSendCreateEnd")
@ResponseBody
public HaobanResponse testListVo(String str) {
......@@ -81,4 +85,19 @@ public class TestTaskController extends WebBaseController {
handoverOperationApiService.dealQywxEnterpriseHandoverResult(wxEnterpriseId);
return resultResponse(HaoBanErrCode.ERR_1);
}
/**
* 处理标签同步
* @param params
* @return
*/
@RequestMapping("/dealFriendTag")
@ResponseBody
public HaobanResponse dealFriendTag(String params) {
if (StringUtils.isBlank(params)) {
return resultResponse(HaoBanErrCode.ERR_2);
}
memberUnionidRelatedApiService.dealQywxExternalUser(params);
return resultResponse(HaoBanErrCode.ERR_1);
}
}
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