完善controller返回值

This commit is contained in:
2023-09-06 22:54:53 +08:00
parent 8bd0418407
commit 2a8c6748fa

View File

@@ -39,7 +39,7 @@ public class DictionaryItemController {
@SysLog(action = "删除")
public Object delete(@RequestBody IdRequest dto) {
this.service.delete(dto);
return null;
return true;
}