Browse Source

type附件

dev
zxc 3 years ago
parent
commit
e0a6215019
  1. 2
      epmet-module/gov-project/gov-project-server/src/main/java/com/epmet/service/impl/IcEventServiceImpl.java

2
epmet-module/gov-project/gov-project-server/src/main/java/com/epmet/service/impl/IcEventServiceImpl.java

@ -1348,7 +1348,7 @@ public class IcEventServiceImpl extends BaseServiceImpl<IcEventDao, IcEventEntit
attachment.setIcEventId(id);
attachment.setCreatedBy(userId);
attachment.setAttachmentFormat(a.getFormat());
attachment.setAttachmentType(a.getType());
attachment.setAttachmentType(StringUtils.isNotBlank(a.getType()) ? a.getType() : "");
attachment.setAttachmentUrl(a.getUrl());
attachment.setStatus(TopicConstant.AUTO_PASSED);
attachment.setSort(sort++);

Loading…
Cancel
Save