Browse Source

回复和群组列表,赋值towOrgName

dev_shibei_match
yinzuomei 4 years ago
parent
commit
19a96955f5
  1. 6
      epmet-module/data-aggregator/data-aggregator-server/src/main/java/com/epmet/dataaggre/service/epmetmessage/impl/EpmetMessageServiceImpl.java

6
epmet-module/data-aggregator/data-aggregator-server/src/main/java/com/epmet/dataaggre/service/epmetmessage/impl/EpmetMessageServiceImpl.java

@ -139,8 +139,7 @@ public class EpmetMessageServiceImpl implements EpmetMessageService {
staffInfo.setStaffName(staffInfoCache.getRealName()); staffInfo.setStaffName(staffInfoCache.getRealName());
staffInfo.setGender(staffInfoCache.getGender().toString()); staffInfo.setGender(staffInfoCache.getGender().toString());
staffInfo.setHeadPhoto(StringUtils.isNotBlank(staffInfoCache.getHeadPhoto()) ? staffInfoCache.getHeadPhoto() : StrConstant.EPMETY_STR); staffInfo.setHeadPhoto(StringUtils.isNotBlank(staffInfoCache.getHeadPhoto()) ? staffInfoCache.getHeadPhoto() : StrConstant.EPMETY_STR);
//todo staffInfo.setOrgName(staffInfoCache.getTwoOrgName());
staffInfo.setOrgName("todo get");
resDTO.getStaffList().add(staffInfo); resDTO.getStaffList().add(staffInfo);
} }
} }
@ -168,8 +167,7 @@ public class EpmetMessageServiceImpl implements EpmetMessageService {
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);
//todo detail.setOrgName(staffInfoCache.getTwoOrgName());
detail.setOrgName("todo get");
} }
result.setDataList(data.getList()); result.setDataList(data.getList());
return result; return result;

Loading…
Cancel
Save