forked from rongchao/epmet-cloud-rizhao
11 changed files with 153 additions and 0 deletions
@ -0,0 +1,51 @@ |
|||||
|
package com.epmet.project.dto.result; |
||||
|
|
||||
|
import com.epmet.dto.result.ProcesslistResultDTO; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.ArrayList; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2020/10/23 10:13 上午 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ProjectDetailResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 2450826789942547426L; |
||||
|
|
||||
|
/** 【事件 = 项目】 |
||||
|
* 事件标题 |
||||
|
*/ |
||||
|
private String eventTitle; |
||||
|
|
||||
|
/** |
||||
|
* 事件内容 |
||||
|
*/ |
||||
|
private String eventContent; |
||||
|
|
||||
|
/** |
||||
|
* 事件来源 |
||||
|
*/ |
||||
|
private String eventSource; |
||||
|
|
||||
|
/** |
||||
|
* 事件图片集合 |
||||
|
*/ |
||||
|
private List<String> imgUrlList; |
||||
|
|
||||
|
/** |
||||
|
* 项目进展 |
||||
|
*/ |
||||
|
private List<ProcesslistResultDTO> processList; |
||||
|
|
||||
|
public ProjectDetailResultDTO() { |
||||
|
this.eventTitle = ""; |
||||
|
this.eventContent = ""; |
||||
|
this.eventSource = ""; |
||||
|
this.imgUrlList = new ArrayList<>(); |
||||
|
this.processList = new ArrayList<>(); |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue