| | |
| | | TProblemEscalation byId = problemEscalationService.getById(id); |
| | | BeanUtils.copyProperties(byId,problemEscalationDetailVO); |
| | | TDictData byId1 = dictDataService.getById(byId.getEscalationType()); |
| | | if (byId.getHandleId()!=null){ |
| | | SysUser sysUser = sysUserService.selectUserById(Long.valueOf(byId.getHandleId())); |
| | | if (sysUser!=null){ |
| | | problemEscalationDetailVO.setHandleName(sysUser.getUserName()); |
| | | } |
| | | } |
| | | |
| | | problemEscalationDetailVO.setEscalationTypeName(byId1.getDataContent()); |
| | | return R.ok(problemEscalationDetailVO); |
| | | } |