6 changed files with 96 additions and 7 deletions
@ -0,0 +1,37 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Description 政府端关闭议题列表属性 |
||||
|
* @ClassName ClosedIssueListGovResultDTO |
||||
|
* @Auth wangc |
||||
|
* @Date 2020-05-18 10:33 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ClosedIssueListGovResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 3809252070982486401L; |
||||
|
|
||||
|
/** |
||||
|
* 议题id |
||||
|
* */ |
||||
|
private String issueId; |
||||
|
|
||||
|
/** |
||||
|
* 议题标题 |
||||
|
* */ |
||||
|
private String issueTitle; |
||||
|
|
||||
|
/** |
||||
|
* 议题关闭时间 时间戳 |
||||
|
* */ |
||||
|
private Long closedTime; |
||||
|
|
||||
|
/** |
||||
|
* 解决方案 |
||||
|
* */ |
||||
|
private String closeReason; |
||||
|
} |
Loading…
Reference in new issue