5 changed files with 130 additions and 2 deletions
@ -0,0 +1,64 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 服务记录反馈 |
|||
*/ |
|||
@Data |
|||
public class IcServiceFeedbackResDTO implements Serializable { |
|||
|
|||
/** |
|||
* 服务项目ID |
|||
*/ |
|||
private String serviceProjectId; |
|||
|
|||
/** |
|||
* 服务目标 |
|||
*/ |
|||
private String serviceGoal; |
|||
|
|||
/** |
|||
* 服务效果 |
|||
*/ |
|||
private String serviceEffect; |
|||
|
|||
/** |
|||
* 服务人数 |
|||
*/ |
|||
// private Integer servicePeopleNumber;
|
|||
|
|||
/** |
|||
* 满意度。满意度 - 不满意:bad、基本满意:good、非常满意:perfect |
|||
*/ |
|||
private String satisfaction; |
|||
|
|||
/** |
|||
* 地址经度 |
|||
*/ |
|||
private String longitude; |
|||
|
|||
/** |
|||
* 地址纬度 |
|||
*/ |
|||
private String latitude; |
|||
|
|||
/** |
|||
* 地址 |
|||
*/ |
|||
private String address; |
|||
|
|||
private List<IcServiceFeedbackResDTO.Attachment> attachmentList; |
|||
|
|||
@Data |
|||
public static class Attachment { |
|||
private String attachmentName; |
|||
private String attachmentFormat; |
|||
private String attachmentType; |
|||
private String attachmentUrl; |
|||
} |
|||
|
|||
} |
Loading…
Reference in new issue