技术监督管理调整
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user