puzhibing
2 天以前 ea7595c4c75926f85388574b261b8ba90cf60e0d
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package com.ruoyi.system.api.model;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.time.LocalDateTime;
 
/**
 * 投诉
 *
 * @author zhibing.pu
 * @Date 2025/3/27 17:46
 */
@Data
@TableName("t_complain")
public class Complain {
    /**
     * 主键
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    /**
     * 车辆id
     */
    @TableField("car_id")
    private Integer carId;
    /**
     * 司机id
     */
    @TableField("driver_id")
    private Integer driverId;
    /**
     * 企业id
     */
    @TableField("enterprise_id")
    private Integer enterpriseId;
    /**
     * 投诉人电话
     */
    @TableField("complain_phone")
    private String complainPhone;
    /**
     * 投诉内容
     */
    @TableField("content")
    private String content;
    /**
     * 投诉时间
     */
    @TableField("complain_time")
    private String complainTime;
    /**
     * 处理状态
     */
    @TableField("treatment_state")
    private String treatmentState;
    /**
     * 处理人
     */
    @TableField("treatment_user")
    private String treatmentUser;
    /**
     * 处理时间
     */
    @TableField("treatment_time")
    private String treatmentTime;
    /**
     * 处理描述
     */
    @TableField("treatment_remark")
    private String treatmentRemark;
    /**
     * 添加时间
     */
    @TableField("create_time")
    private LocalDateTime createTime;
}