This commit is contained in:
wangliwen 2022-12-13 13:33:51 +08:00
parent 7418814fbd
commit 4c935c6115
1 changed files with 2 additions and 2 deletions

View File

@ -95,7 +95,7 @@ public class TDemandDataController {
tDemandDataService.save(dto);
return new Result();
return new Result().ok("保存成功");
}
@PutMapping
@ -108,7 +108,7 @@ public class TDemandDataController {
tDemandDataService.update(dto);
return new Result();
return new Result().ok("修改成功");
}
@DeleteMapping