Browse Source

Merge branch 'dev_project_hd_syc' into dev_jmreport

master
syc 3 years ago
parent
commit
ba880d5c9c
  1. 25
      epmet-module/gov-project/gov-project-client/src/main/java/com/epmet/dto/result/IcEventProcessListResultDTO.java

25
epmet-module/gov-project/gov-project-client/src/main/java/com/epmet/dto/result/IcEventProcessListResultDTO.java

@ -16,6 +16,10 @@ public class IcEventProcessListResultDTO implements Serializable {
private static final long serialVersionUID = 5762152044573235897L; private static final long serialVersionUID = 5762152044573235897L;
/**
* 项目ID
*/
private String projectId;
/** /**
* 进展Id * 进展Id
*/ */
@ -39,6 +43,26 @@ public class IcEventProcessListResultDTO implements Serializable {
* 公开答复 * 公开答复
*/ */
private String publicReply; private String publicReply;
/**
* 是否发送到外部系统 0否 1是
*/
private Integer isSend;
/**
* 内部备注
*/
private String internalRemark;
/**
* 子节点
*/
private List<SubProcessDTO> subProcess;
/**
* 公开答复附件
*/
private List<PublicAndInternalFileResultDTO> publicFile;
/**
* 内部备注附件
*/
private List<PublicAndInternalFileResultDTO> internalFile;
/** /**
* 协办单位类型1社区自组织2联建单位 * 协办单位类型1社区自组织2联建单位
*/ */
@ -69,4 +93,5 @@ public class IcEventProcessListResultDTO implements Serializable {
*/ */
private String actualServiceTime; private String actualServiceTime;
} }

Loading…
Cancel
Save