Commit 29b15ee6 by fudahua

群发定时触发任务 测试接口

parent 8a570197
...@@ -89,21 +89,21 @@ public class TestTaskController extends WebBaseController { ...@@ -89,21 +89,21 @@ public class TestTaskController extends WebBaseController {
@RequestMapping("/dealQywxEnterpriseHandover") @RequestMapping("/dealQywxEnterpriseHandover")
@ResponseBody @ResponseBody
public HaobanResponse dealQywxEnterpriseHandover(String str) { public HaobanResponse dealQywxEnterpriseHandover(String wxEnterpriseId) {
if (StringUtils.isBlank(str)) { if (StringUtils.isBlank(wxEnterpriseId)) {
return resultResponse(HaoBanErrCode.ERR_2); return resultResponse(HaoBanErrCode.ERR_2);
} }
handoverOperationApiService.dealQywxEnterpriseHandover(str); handoverOperationApiService.dealQywxEnterpriseHandover(wxEnterpriseId);
return resultResponse(HaoBanErrCode.ERR_1); return resultResponse(HaoBanErrCode.ERR_1);
} }
@RequestMapping("/dealQywxEnterpriseHandoverResult") @RequestMapping("/dealQywxEnterpriseHandoverResult")
@ResponseBody @ResponseBody
public HaobanResponse dealQywxEnterpriseHandoverResult(String str) { public HaobanResponse dealQywxEnterpriseHandoverResult(String wxEnterpriseId) {
if (StringUtils.isBlank(str)) { if (StringUtils.isBlank(wxEnterpriseId)) {
return resultResponse(HaoBanErrCode.ERR_2); return resultResponse(HaoBanErrCode.ERR_2);
} }
handoverOperationApiService.dealQywxEnterpriseHandoverResult(str); handoverOperationApiService.dealQywxEnterpriseHandoverResult(wxEnterpriseId);
return resultResponse(HaoBanErrCode.ERR_1); 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