优化:优化后端 CRUD 公共组件(移除 BaseService 中无用的默认实现,抽取 BaseRequest 基类来方便使用分组校验),并同步调整部门管理 API

This commit is contained in:
2023-01-30 22:35:17 +08:00
parent 2c6bef91e8
commit 83b01c2e4f
18 changed files with 144 additions and 111 deletions

View File

@@ -153,7 +153,6 @@ public class LogServiceImpl implements LogService {
if (createUser == null) {
return;
}
logVO.setCreateUserString(
ExceptionUtils.exToNull(() -> userService.getById(createUser)).getNickname());
logVO.setCreateUserString(ExceptionUtils.exToNull(() -> userService.getById(createUser)).getNickname());
}
}