生产管理修改

liweidong
李涛 2 weeks ago
parent bda496f4b8
commit 74b0d1bd27
  1. 2
      blade-service/blade-desk/src/main/java/org/springblade/desk/common/service/impl/MesNotifyMessageServiceImpl.java

@ -64,7 +64,7 @@ public class MesNotifyMessageServiceImpl extends BaseServiceImpl<MesNotifyMessag
mesNotifyMessageVOList.getRecords().forEach(entity -> { mesNotifyMessageVOList.getRecords().forEach(entity -> {
MesNotifyMessageVO mesNotifyMessageVO = new MesNotifyMessageVO(); MesNotifyMessageVO mesNotifyMessageVO = new MesNotifyMessageVO();
BeanUtils.copyProperties(entity, mesNotifyMessageVO); BeanUtils.copyProperties(entity, mesNotifyMessageVO);
mesNotifyMessageVO.setCreateUserName(mesNotifyMessageVO.getCreateUser() == null ? UserCache.getUser(mesNotifyMessageVO.getCreateUser()).getName() : ""); mesNotifyMessageVO.setCreateUserName(mesNotifyMessageVO.getCreateUser() != null ? UserCache.getUser(mesNotifyMessageVO.getCreateUser()).getName() : "");
mesNotifyMessageList.add(mesNotifyMessageVO); mesNotifyMessageList.add(mesNotifyMessageVO);
}); });
page1.setRecords(mesNotifyMessageList); page1.setRecords(mesNotifyMessageList);

Loading…
Cancel
Save