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;
|
}
|