|
@ -164,7 +164,7 @@ public class EpmetMessageServiceImpl implements EpmetMessageService { |
|
|
result.setTotal((int) data.getTotal()); |
|
|
result.setTotal((int) data.getTotal()); |
|
|
for (InfoReplyDetail detail : data.getList()) { |
|
|
for (InfoReplyDetail detail : data.getList()) { |
|
|
//查询每个工作人员的基本信息
|
|
|
//查询每个工作人员的基本信息
|
|
|
CustomerStaffInfoCache staffInfoCache = customerStaffRedis.getStaffInfo(formDTO.getCustomerId(), detail.getStaffId()); |
|
|
CustomerStaffInfoCacheResult staffInfoCache = customerStaffRedis.getStaffInfo(formDTO.getCustomerId(), detail.getStaffId()); |
|
|
detail.setStaffName(staffInfoCache.getRealName()); |
|
|
detail.setStaffName(staffInfoCache.getRealName()); |
|
|
detail.setGender(staffInfoCache.getGender().toString()); |
|
|
detail.setGender(staffInfoCache.getGender().toString()); |
|
|
detail.setHeadPhoto(StringUtils.isNotBlank(staffInfoCache.getHeadPhoto()) ? staffInfoCache.getHeadPhoto() : StrConstant.EPMETY_STR); |
|
|
detail.setHeadPhoto(StringUtils.isNotBlank(staffInfoCache.getHeadPhoto()) ? staffInfoCache.getHeadPhoto() : StrConstant.EPMETY_STR); |
|
|