2 changed files with 59 additions and 0 deletions
@ -0,0 +1,49 @@ |
|||||
|
package com.elink.esua.epdc.dto.analysis.pc.screen.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author:liuchuang |
||||
|
* @Date:2021/8/23 18:44 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class EpdcScreenIssueListResultDTO implements Serializable { |
||||
|
private static final long serialVersionUID = -2604744896996074330L; |
||||
|
|
||||
|
/** |
||||
|
* 议题ID |
||||
|
*/ |
||||
|
private String id; |
||||
|
|
||||
|
/** |
||||
|
* 议题内容 |
||||
|
*/ |
||||
|
private String issueContent; |
||||
|
|
||||
|
/** |
||||
|
* 纬度 |
||||
|
*/ |
||||
|
private String issueLatitude; |
||||
|
|
||||
|
/** |
||||
|
* 经度 |
||||
|
*/ |
||||
|
private String issueLongitude; |
||||
|
|
||||
|
/** |
||||
|
* 议题状态:0-处理中,2-已关闭,4-已转项目 |
||||
|
*/ |
||||
|
private Integer issueState; |
||||
|
|
||||
|
/** |
||||
|
* 类型:1-议题,2、项目 |
||||
|
*/ |
||||
|
private String typeCode; |
||||
|
|
||||
|
/** |
||||
|
* 颜色类型:1-红色,2-蓝色,3-黄色,4-绿色 |
||||
|
*/ |
||||
|
private String colorType; |
||||
|
} |
Loading…
Reference in new issue