package com.stylefeng.guns.modular.system.model;
|
|
import com.baomidou.mybatisplus.enums.IdType;
|
import java.util.Date;
|
import com.baomidou.mybatisplus.annotations.TableId;
|
import com.baomidou.mybatisplus.activerecord.Model;
|
import com.baomidou.mybatisplus.annotations.TableName;
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
* 投诉
|
* </p>
|
*
|
* @author stylefeng
|
* @since 2023-03-02
|
*/
|
@TableName("t_complaint")
|
public class TComplaint extends Model<TComplaint> {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
/**
|
* 用户id
|
*/
|
private Integer userId;
|
/**
|
* 投诉司机id
|
*/
|
private Integer driverId;
|
/**
|
* 投诉原因
|
*/
|
private String reason;
|
/**
|
* 注释
|
*/
|
private String notes;
|
/**
|
* 处理状态(1=待处理,2=已处理)
|
*/
|
private Integer state;
|
/**
|
* 状态(1=正常,2=冻结,3=删除)
|
*/
|
private Integer status;
|
/**
|
* 添加时间
|
*/
|
private Date createTime;
|
/**
|
* 处理人id
|
*/
|
private Integer auditId;
|
/**
|
* 处理人名称
|
*/
|
private String auditPersonName;
|
/**
|
* 处理时间
|
*/
|
private Date auditTime;
|
|
public Date getAuditTime() {
|
return auditTime;
|
}
|
|
public void setAuditTime(Date auditTime) {
|
this.auditTime = auditTime;
|
}
|
|
public Integer getAuditId() {
|
return auditId;
|
}
|
|
public void setAuditId(Integer auditId) {
|
this.auditId = auditId;
|
}
|
|
public String getAuditPersonName() {
|
return auditPersonName;
|
}
|
|
public void setAuditPersonName(String auditPersonName) {
|
this.auditPersonName = auditPersonName;
|
}
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Integer getUserId() {
|
return userId;
|
}
|
|
public void setUserId(Integer userId) {
|
this.userId = userId;
|
}
|
|
public Integer getDriverId() {
|
return driverId;
|
}
|
|
public void setDriverId(Integer driverId) {
|
this.driverId = driverId;
|
}
|
|
public String getReason() {
|
return reason;
|
}
|
|
public void setReason(String reason) {
|
this.reason = reason;
|
}
|
|
public String getNotes() {
|
return notes;
|
}
|
|
public void setNotes(String notes) {
|
this.notes = notes;
|
}
|
|
public Integer getState() {
|
return state;
|
}
|
|
public void setState(Integer state) {
|
this.state = state;
|
}
|
|
public Integer getStatus() {
|
return status;
|
}
|
|
public void setStatus(Integer status) {
|
this.status = status;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
@Override
|
protected Serializable pkVal() {
|
return this.id;
|
}
|
|
@Override
|
public String toString() {
|
return "TComplaint{" +
|
"id=" + id +
|
", userId=" + userId +
|
", driverId=" + driverId +
|
", reason=" + reason +
|
", notes=" + notes +
|
", state=" + state +
|
", status=" + status +
|
", createTime=" + createTime +
|
"}";
|
}
|
}
|