2 changed files with 82 additions and 0 deletions
@ -0,0 +1,41 @@ |
|||
package com.elink.esua.epdc.dto.analysis.pc.screen.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author: zhangfenghe |
|||
* @Description: 多元服务——地图——物业服务返回参数列表 |
|||
* @Date 2021/9/14 13:53 |
|||
* @Version 1.0 |
|||
*/ |
|||
@Data |
|||
public class EpdcScreenMapPropertyServicesResultDTO implements Serializable { |
|||
private static final long serialVersionUID = -7410423774938603582L; |
|||
|
|||
/** |
|||
*项目id |
|||
**/ |
|||
private String id; |
|||
|
|||
/** |
|||
*议题位置经度 |
|||
**/ |
|||
private String issueLongitude; |
|||
|
|||
/** |
|||
*议题位置维度 |
|||
**/ |
|||
private String issueLatitude; |
|||
|
|||
/** |
|||
*项目内容 |
|||
**/ |
|||
private String itemContent; |
|||
|
|||
/** |
|||
*物业项目名称 |
|||
**/ |
|||
private String projectName; |
|||
} |
@ -0,0 +1,41 @@ |
|||
package com.elink.esua.epdc.dto.analysis.pc.screen.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author: zhangfenghe |
|||
* @Description: 多元服务-物业服务列表返回对象 |
|||
* @Date 2021/9/13 17:48 |
|||
* @Version 1.0 |
|||
*/ |
|||
@Data |
|||
public class EpdcScreenPropertyListResultDTO implements Serializable { |
|||
private static final long serialVersionUID = 962265442296719336L; |
|||
|
|||
/** |
|||
*物业项目名称 |
|||
**/ |
|||
private String projectName; |
|||
|
|||
/** |
|||
*服务次数 |
|||
**/ |
|||
private int serviceNum; |
|||
|
|||
/** |
|||
*好评率 |
|||
**/ |
|||
private String favorableRating; |
|||
|
|||
/** |
|||
*投诉率 |
|||
**/ |
|||
private String measured; |
|||
|
|||
/** |
|||
*满意度 |
|||
**/ |
|||
private String satisfaction; |
|||
} |
Loading…
Reference in new issue