|
|
@ -16,6 +16,10 @@ public class IcEventProcessListResultDTO implements Serializable { |
|
|
|
|
|
|
|
private static final long serialVersionUID = 5762152044573235897L; |
|
|
|
|
|
|
|
/** |
|
|
|
* 项目ID |
|
|
|
*/ |
|
|
|
private String projectId; |
|
|
|
/** |
|
|
|
* 进展Id |
|
|
|
*/ |
|
|
@ -39,6 +43,26 @@ public class IcEventProcessListResultDTO implements Serializable { |
|
|
|
* 公开答复 |
|
|
|
*/ |
|
|
|
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联建单位 |
|
|
|
*/ |
|
|
@ -69,4 +93,5 @@ public class IcEventProcessListResultDTO implements Serializable { |
|
|
|
*/ |
|
|
|
private String actualServiceTime; |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|