Merge branch 'master' into docker_package
This commit is contained in:
commit
8c037768b4
|
@ -68,7 +68,7 @@ public class TResourceMountApplyController {
|
|||
// @RequiresPermissions("resourceMountApply:tresourcemountapply:info")
|
||||
public Result<TResourceMountApplyDTO> get(@PathVariable("id") Long id) {
|
||||
TResourceMountApplyDTO data = tResourceMountApplyService.get(id);
|
||||
if (data.getDeptId() != null) {
|
||||
if (data != null && data.getDeptId() != null) {
|
||||
SysDeptDTO sysDeptDTO = sysDeptService.get(Long.valueOf(data.getDeptId()));
|
||||
if (sysDeptDTO != null) {
|
||||
ResourceDTO resourceDTO = data.getResourceDTO();
|
||||
|
|
Loading…
Reference in New Issue