Commit 8a570197 by fudahua

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

parent 9beac2aa
...@@ -72,11 +72,11 @@ public class TestTaskController extends WebBaseController { ...@@ -72,11 +72,11 @@ public class TestTaskController extends WebBaseController {
@RequestMapping("/setTest") @RequestMapping("/setTest")
@ResponseBody @ResponseBody
public HaobanResponse setTest(String str) { public HaobanResponse setTest(String enterpriseId) {
if (StringUtils.isBlank(str)) { if (StringUtils.isBlank(enterpriseId)) {
return resultResponse(HaoBanErrCode.ERR_2); return resultResponse(HaoBanErrCode.ERR_2);
} }
taskQuartzCallbackApiService.setTest(str); taskQuartzCallbackApiService.setTest(enterpriseId);
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