liujie
2025-06-23 ba41b9351647a36bad13c0ab03d3fb602f5f4b27
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
50
51
52
53
54
55
56
package com.panzhihua.westcommittee.warpper;
 
import com.panzhihua.westcommittee.model.query.BasePage;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
/**
 * @author mitao
 * @date 2025/3/15
 */
@Data
@ApiModel("管理后台诉求管理查询数据传输对象")
public class MgtComplaintQuery extends BasePage {
    @ApiModelProperty(value = "接件人")
    private String reportUserName;
 
    @ApiModelProperty(value = "接件人联系方式")
    private String reportUserPhone;
 
    @ApiModelProperty(value = "诉求人")
    private String name;
 
    @ApiModelProperty(value = "诉求人联系方式")
    private String contactNumber;
 
    @ApiModelProperty(value = "发生时间-开始")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private String startTime;
 
    @ApiModelProperty(value = "发生时间-结束")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private String endTime;
 
    @ApiModelProperty(value = "地址")
    private String address;
 
    @ApiModelProperty(value = "事件类型")
    private String problemType;
 
    @ApiModelProperty(value = "处理人")
    private String deptName;
 
    @ApiModelProperty(value = "事件上报情况")
    private String reportStr;
 
    @ApiModelProperty(value = "事件评价 0:不满意 1:一般 2:满意 3:非常满意")
    private Integer commentRate;
 
    @ApiModelProperty(value = "处理人所属层级")
    private Integer level;
 
    @ApiModelProperty(value = "处理人所属层级code")
    private String code;
}