Browse Source

已有专题列表优化

dev_shibei_match
yinzuomei 4 years ago
parent
commit
5e0035f74e
  1. 2
      epmet-module/gov-voice/gov-voice-server/src/main/java/com/epmet/service/impl/SpecialSubjectServiceImpl.java

2
epmet-module/gov-voice/gov-voice-server/src/main/java/com/epmet/service/impl/SpecialSubjectServiceImpl.java

@ -201,7 +201,7 @@ public class SpecialSubjectServiceImpl extends BaseServiceImpl<SpecialSubjectDao
StaffInfoFromDTO staffInfoFromDTO = new StaffInfoFromDTO(); StaffInfoFromDTO staffInfoFromDTO = new StaffInfoFromDTO();
staffInfoFromDTO.setStaffId(formDTO.getUserId()); staffInfoFromDTO.setStaffId(formDTO.getUserId());
Result<MineResultDTO> staffResult = govOrgOpenFeignClient.queryStaffProfile(staffInfoFromDTO); Result<MineResultDTO> staffResult = govOrgOpenFeignClient.queryStaffProfile(staffInfoFromDTO);
if (staffResult.success() && null != staffResult.getData()) { if (!staffResult.success() && null == staffResult.getData()) {
throw new RenException("查询当前工作人员信息异常"); throw new RenException("查询当前工作人员信息异常");
} }
List<WorkSpecialSubjectResultDTO> resultDTOList = new ArrayList<>(); List<WorkSpecialSubjectResultDTO> resultDTOList = new ArrayList<>();

Loading…
Cancel
Save