package com.supersavedriving.user.modular.system.model;
|
|
import com.baomidou.mybatisplus.annotations.TableField;
|
import com.baomidou.mybatisplus.annotations.TableId;
|
import com.baomidou.mybatisplus.annotations.TableName;
|
import com.baomidou.mybatisplus.enums.IdType;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* @author zhibing.pu
|
* @date 2023/3/24 11:58
|
*/
|
@Data
|
@TableName("t_complaint")
|
public class Complaint {
|
/**
|
* 主键
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
@TableField("id")
|
private Integer id;
|
/**
|
* 用户id
|
*/
|
@TableField("userId")
|
private Integer userId;
|
/**
|
* 订单id
|
*/
|
@TableField("orderId")
|
private Integer orderId;
|
/**
|
* 司机id
|
*/
|
@TableField("driverId")
|
private Integer driverId;
|
/**
|
* 投诉原因
|
*/
|
@TableField("reason")
|
private String reason;
|
/**
|
* 注释
|
*/
|
@TableField("notes")
|
private String notes;
|
/**
|
* 处理状态(1=待处理,2=已处理)
|
*/
|
@TableField("state")
|
private Integer state;
|
/**
|
* 状态(1=正常,2=冻结,3=删除)
|
*/
|
@TableField("status")
|
private Integer status;
|
/**
|
* 添加时间
|
*/
|
@TableField("createTime")
|
private Date createTime;
|
/**
|
* 处理人id
|
*/
|
@TableField("auditId")
|
private Integer auditId;
|
/**
|
* 处理人名称
|
*/
|
@TableField("auditPersonName")
|
private String auditPersonName;
|
/**
|
* 处理时间
|
*/
|
@TableField("auditTime")
|
private Date auditTime;
|
}
|