mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-25 13:35:15 +08:00
update
This commit is contained in:
@@ -0,0 +1,55 @@
|
||||
package com.jsowell.pile.dto;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 查询会员反馈DTO
|
||||
*/
|
||||
@Data
|
||||
public class QueryMemberFeedbackDTO {
|
||||
|
||||
private Integer pageSize;
|
||||
private Integer pageNum;
|
||||
|
||||
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 会员id
|
||||
*/
|
||||
private String memberId;
|
||||
|
||||
/**
|
||||
* 会员姓名
|
||||
*/
|
||||
private String memberName;
|
||||
|
||||
/**
|
||||
* 联系方式
|
||||
*/
|
||||
private String contactInfo;
|
||||
|
||||
/**
|
||||
* 反馈类型 1=功能建议,2=系统BUG,3=服务投诉,4=站点问题,5=电桩问题,6=其他)
|
||||
*/
|
||||
private String feedbackType;
|
||||
|
||||
/**
|
||||
* 处理状态(0=未处理,1=处理中,2=已处理,3=待跟进)
|
||||
*/
|
||||
private String status;
|
||||
|
||||
|
||||
/**
|
||||
* 管理员回复内容
|
||||
*/
|
||||
private String replyContent;
|
||||
|
||||
/**
|
||||
* 管理员回复时间
|
||||
*/
|
||||
private Date replyTime;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user