...
This commit is contained in:
parent
b2f03e4218
commit
c883aaf8d2
|
@ -87,7 +87,7 @@ public class SysAuditTeamController {
|
|||
return index;
|
||||
}).collect(Collectors.toList()));
|
||||
sysAuditTeamService.save(dto);
|
||||
return new Result();
|
||||
return new Result().ok("保存成功");
|
||||
}
|
||||
|
||||
@PutMapping
|
||||
|
@ -108,7 +108,7 @@ public class SysAuditTeamController {
|
|||
}).collect(Collectors.toList()));
|
||||
sysAuditTeamService.update(dto);
|
||||
|
||||
return new Result();
|
||||
return new Result().ok("修改成功");
|
||||
}
|
||||
|
||||
@DeleteMapping
|
||||
|
@ -121,7 +121,7 @@ public class SysAuditTeamController {
|
|||
|
||||
sysAuditTeamService.delete(ids);
|
||||
|
||||
return new Result();
|
||||
return new Result().ok("删除成功");
|
||||
}
|
||||
|
||||
@GetMapping("export")
|
||||
|
|
Loading…
Reference in New Issue