Commit 29b15ee6 by fudahua

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

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