14 changed files with 404 additions and 40 deletions
@ -0,0 +1,33 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonInclude; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
import java.util.Set; |
|||
|
|||
/** |
|||
* @description: |
|||
* @author: liushaowen |
|||
* @date: 2020/11/6 13:54 |
|||
*/ |
|||
@Data |
|||
public class AgencyElementTreeResultDTO implements Serializable { |
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
private Set<String> defaultKeys; |
|||
|
|||
private List<Agency> list; |
|||
|
|||
@Data |
|||
public static class Agency{ |
|||
private String id; |
|||
|
|||
private String label; |
|||
|
|||
@JsonInclude(JsonInclude.Include.NON_EMPTY) |
|||
private List<AgencyElementTreeResultDTO.Agency> children; |
|||
} |
|||
|
|||
} |
@ -0,0 +1,33 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.Min; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @description: |
|||
* @author: liushaowen |
|||
* @date: 2020/11/5 17:25 |
|||
*/ |
|||
@Data |
|||
public class OperAdviceListFormDTO implements Serializable { |
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
private String customerId; |
|||
|
|||
private String isReply; |
|||
|
|||
private String adviceType; |
|||
|
|||
private String startTime; |
|||
|
|||
private String endTime; |
|||
|
|||
@Min(1) |
|||
private Integer pageNo; |
|||
|
|||
@Min(1) |
|||
private Integer pageSize; |
|||
|
|||
} |
@ -0,0 +1,27 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @description:回复建议FormDTO |
|||
* @author: liushaowen |
|||
* @date: 2020/11/6 10:37 |
|||
*/ |
|||
@Data |
|||
public class ReplyAdviceFormDTO implements Serializable { |
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
@NotBlank(message = "adviceId不能为空") |
|||
private String adviceId; |
|||
|
|||
@NotBlank(message = "回复内容不能为空") |
|||
private String replyContent; |
|||
|
|||
private List<String> govImgList; |
|||
|
|||
private String govContent; |
|||
} |
@ -0,0 +1,55 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @description: |
|||
* @author: liushaowen |
|||
* @date: 2020/11/5 17:37 |
|||
*/ |
|||
@Data |
|||
public class AdviceDetailResultDTO implements Serializable { |
|||
private static final long serialVersionUID = 1L; |
|||
/** |
|||
* 建议id |
|||
*/ |
|||
private String adviceId; |
|||
|
|||
/** |
|||
* 建议内容 |
|||
*/ |
|||
private String adviceContent; |
|||
|
|||
/** |
|||
* 电话 |
|||
*/ |
|||
private String phone; |
|||
|
|||
/** |
|||
* 建议时间 |
|||
*/ |
|||
private String adviceTime; |
|||
|
|||
/** |
|||
* 回复内容 |
|||
*/ |
|||
private String replyContent; |
|||
|
|||
/** |
|||
* 回复时间 |
|||
*/ |
|||
private String replyTime; |
|||
|
|||
/** |
|||
* 回复人 |
|||
*/ |
|||
private String replyUser; |
|||
|
|||
/** |
|||
* 建议图片列表 |
|||
*/ |
|||
private List<String> imgList; |
|||
} |
@ -0,0 +1,44 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @description: |
|||
* @author: liushaowen |
|||
* @date: 2020/11/5 17:26 |
|||
*/ |
|||
@Data |
|||
public class OperAdviceListResultDTO implements Serializable { |
|||
private static final long serialVersionUID = 1L; |
|||
/** |
|||
* 客户名 |
|||
*/ |
|||
private String customerName; |
|||
|
|||
/** |
|||
* 建议id |
|||
*/ |
|||
private String adviceId; |
|||
|
|||
/** |
|||
* 是否回复 0否1是 |
|||
*/ |
|||
private String isReply; |
|||
|
|||
/** |
|||
* 回复内容 |
|||
*/ |
|||
private String adviceContent; |
|||
|
|||
/** |
|||
* 手机 空为* |
|||
*/ |
|||
private String phone; |
|||
|
|||
/** |
|||
* 建议类型 空为* |
|||
*/ |
|||
private String adviceType; |
|||
} |
Loading…
Reference in new issue