Commit 56340018 authored by tangwei's avatar tangwei

新增接口

parent 4e7f07cb
......@@ -87,7 +87,24 @@ public class PlanTaskController extends AbstractBaseController {
/**
* 计划执行删除
*
* @param strArry
* @return
*/
@TycloudOperation(ApiLevel = UserType.AGENCY)
@ApiOperation(value = "计划执行删除", notes = "计划执行删除")
@RequestMapping(value = "/deletePlanTaskNew", produces = "application/json;charset=UTF-8", method = RequestMethod.POST)
public CommonResponse planTaskDeleteNew(@ApiParam(value = "计划id数组", required = true) @RequestParam String[] strArry) {
try {
planTaskService.planTaskDet(strArry);
return CommonResponseUtil.success();
} catch (Exception e) {
log.error(e.getMessage(), e);
return CommonResponseUtil.failure("删除计划执行失败");
}
}
......
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