tj
7 天以前 b428226d0cf78bbb843fa17bffb1e338230fae6c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package com.mzl.flower.dto.response.content;
 
import com.mzl.flower.base.AbstractTransDTO;
import com.mzl.flower.base.annotation.DictTrans;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.time.LocalDateTime;
 
@Data
public class FeedbackDTO extends AbstractTransDTO {
 
    private Long id;
 
    @ApiModelProperty("用户ID")
    private String userId;
 
    @ApiModelProperty("投诉反馈内容")
    private String feedBack;
 
    @ApiModelProperty("投诉反馈类型(feedback_type)")
    @DictTrans(target = "typeStr",codeType = "feedback_type")
    private String type;
 
    @ApiModelProperty("投诉反馈类型(feedback_type)")
    private String typeStr;
 
    @ApiModelProperty("图片")
    private String pictures;
 
    @ApiModelProperty("回复内容")
    private String reply;
 
    @ApiModelProperty("是否处理")
    private Boolean handled;
 
    @ApiModelProperty("回复时间")
    private LocalDateTime replyTime;
 
    @ApiModelProperty("提交时间")
    private LocalDateTime createTime;
 
 
    @ApiModelProperty("用户姓名")
    private String customerName;
 
    @ApiModelProperty("用户电话")
    private String customerTel;
}