Commit 0f1396b5 by 杨伟程

报警报错

parent fe706dde
......@@ -51,14 +51,14 @@ public class PlatAlarmConfigController {
@ApiOperation("编辑(审核)")
@PostMapping("editAudit")
public ApiResponseEntity<?> editAudit(PlatAlarmConfigDTOVO dto) {
public ApiResponseEntity<?> editAudit(@RequestBody PlatAlarmConfigDTOVO dto) {
platAlarmConfigService.editAudit(dto);
return ApiResponseUtils.success();
}
@ApiOperation("编辑(不审核)")
@PostMapping("edit")
public ApiResponseEntity<?> edit(PlatAlarmConfigDTOVO dto) {
public ApiResponseEntity<?> edit(@RequestBody PlatAlarmConfigDTOVO dto) {
platAlarmConfigService.edit(dto);
return ApiResponseUtils.success();
}
......
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 sign in to comment