package com.stylefeng.guns.modular.system.model;
|
|
import com.baomidou.mybatisplus.enums.IdType;
|
import java.math.BigDecimal;
|
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 2022-03-28
|
*/
|
@TableName("t_complaint_deductmoney")
|
public class ComplaintDeductmoney extends Model<ComplaintDeductmoney> {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
/**
|
* 扣款时间
|
*/
|
private Date createTime;
|
/**
|
* 司机id
|
*/
|
private Integer driverId;
|
/**
|
* 扣款金额
|
*/
|
private BigDecimal money;
|
/**
|
* 投诉原因
|
*/
|
private String reason;
|
/**
|
* 投诉id集(用;隔开)
|
*/
|
private String complaintIds;
|
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public Integer getDriverId() {
|
return driverId;
|
}
|
|
public void setDriverId(Integer driverId) {
|
this.driverId = driverId;
|
}
|
|
public BigDecimal getMoney() {
|
return money;
|
}
|
|
public void setMoney(BigDecimal money) {
|
this.money = money;
|
}
|
|
public String getReason() {
|
return reason;
|
}
|
|
public void setReason(String reason) {
|
this.reason = reason;
|
}
|
|
public String getComplaintIds() {
|
return complaintIds;
|
}
|
|
public void setComplaintIds(String complaintIds) {
|
this.complaintIds = complaintIds;
|
}
|
|
@Override
|
protected Serializable pkVal() {
|
return this.id;
|
}
|
|
@Override
|
public String toString() {
|
return "ComplaintDeductmoney{" +
|
"id=" + id +
|
", createTime=" + createTime +
|
", driverId=" + driverId +
|
", money=" + money +
|
", reason=" + reason +
|
", complaintIds=" + complaintIds +
|
"}";
|
}
|
}
|