|
@ -4,7 +4,6 @@ import com.fasterxml.jackson.annotation.JsonIgnore; |
|
|
import lombok.Data; |
|
|
import lombok.Data; |
|
|
|
|
|
|
|
|
import java.io.Serializable; |
|
|
import java.io.Serializable; |
|
|
import java.util.ArrayList; |
|
|
|
|
|
import java.util.List; |
|
|
import java.util.List; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
@ -16,6 +15,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 +42,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 +92,5 @@ public class IcEventProcessListResultDTO implements Serializable { |
|
|
*/ |
|
|
*/ |
|
|
private String actualServiceTime; |
|
|
private String actualServiceTime; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|