技术监督管理调整

This commit is contained in:
2023-06-29 14:14:34 +08:00
parent bd45a1cae5
commit 86abd2458e
9 changed files with 53 additions and 2 deletions

View File

@@ -100,4 +100,18 @@ public class SupvPushGwController extends BaseController {
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
}
/**
* 删除电能质量技术监督工作计划接口
* @author cdf
* @date 2023/6/28
*/
@PostMapping("delPushPlan")
@OperateInfo(info = LogEnum.BUSINESS_COMMON)
@ApiOperation("取消电能质量技术监督工作计划接口")
@ApiImplicitParam(name = "planIds",value = "请求体",required = true)
public HttpResult<Object> delPushPlan(@RequestBody List<String> planIds){
String methodDescribe = getMethodDescribe("delPushPlan");
supvPushGwService.deletePlan(planIds);
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
}
}