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

Loading…
Cancel
Save