package com.ruoyi.management.api.model;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.ruoyi.common.core.annotation.Excel;
|
import com.ruoyi.common.core.web.domain.BaseModel;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* 违章管理对象 t_violation_manage
|
*
|
* @author xiaochen
|
* @date 2023-06-07
|
*/
|
public class TViolationManage extends BaseModel
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** $column.columnComment */
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/** 车辆id */
|
@Excel(name = "车辆id")
|
private Integer carId;
|
|
/** 司机id */
|
@Excel(name = "司机id")
|
private Integer driverId;
|
|
/** 承租人 */
|
@Excel(name = "承租人")
|
private String driverName;
|
|
/** 承租人手机号 */
|
@Excel(name = "承租人手机号")
|
private String driverPhone;
|
|
/** 违章时间 */
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
@Excel(name = "违章时间", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date violationTime;
|
|
/** 违章地点 */
|
@Excel(name = "违章地点")
|
private String violationAddress;
|
|
/** 违章行为 */
|
@Excel(name = "违章行为")
|
private String violationBehavior;
|
|
/** 是否处理 1是 0否 */
|
@Excel(name = "是否处理 1是 0否")
|
private Integer ifHandle;
|
|
/** 处理时间 */
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
@Excel(name = "处理时间", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date handleTime;
|
|
/** 是否交款 1是 0否 */
|
@Excel(name = "是否交款 1是 0否")
|
private Integer ifPayment;
|
|
/** 采集单位 */
|
@Excel(name = "采集单位")
|
private String collectionUnit;
|
|
/** 违章罚款 */
|
@Excel(name = "违章罚款")
|
private BigDecimal violationFines;
|
|
/** 违章扣分 */
|
@Excel(name = "违章扣分")
|
private Integer violationDeductPoints;
|
|
/** 更新时间 */
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
@Excel(name = "更新时间", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date renewTime;
|
|
/** 违章图片 */
|
@Excel(name = "违章图片")
|
private String violationPicture;
|
|
private BigDecimal overMoney;
|
|
|
public BigDecimal getOverMoney() {
|
return overMoney;
|
}
|
|
public void setOverMoney(BigDecimal overMoney) {
|
this.overMoney = overMoney;
|
}
|
|
public void setId(Integer id)
|
{
|
this.id = id;
|
}
|
|
public Integer getId()
|
{
|
return id;
|
}
|
public void setCarId(Integer carId)
|
{
|
this.carId = carId;
|
}
|
|
public Integer getCarId()
|
{
|
return carId;
|
}
|
public void setDriverId(Integer driverId)
|
{
|
this.driverId = driverId;
|
}
|
|
public Integer getDriverId()
|
{
|
return driverId;
|
}
|
public void setDriverName(String driverName)
|
{
|
this.driverName = driverName;
|
}
|
|
public String getDriverName()
|
{
|
return driverName;
|
}
|
public void setDriverPhone(String driverPhone)
|
{
|
this.driverPhone = driverPhone;
|
}
|
|
public String getDriverPhone()
|
{
|
return driverPhone;
|
}
|
public void setViolationTime(Date violationTime)
|
{
|
this.violationTime = violationTime;
|
}
|
|
public Date getViolationTime()
|
{
|
return violationTime;
|
}
|
public void setViolationAddress(String violationAddress)
|
{
|
this.violationAddress = violationAddress;
|
}
|
|
public String getViolationAddress()
|
{
|
return violationAddress;
|
}
|
public void setViolationBehavior(String violationBehavior)
|
{
|
this.violationBehavior = violationBehavior;
|
}
|
|
public String getViolationBehavior()
|
{
|
return violationBehavior;
|
}
|
public void setIfHandle(Integer ifHandle)
|
{
|
this.ifHandle = ifHandle;
|
}
|
|
public Integer getIfHandle()
|
{
|
return ifHandle;
|
}
|
public void setHandleTime(Date handleTime)
|
{
|
this.handleTime = handleTime;
|
}
|
|
public Date getHandleTime()
|
{
|
return handleTime;
|
}
|
public void setIfPayment(Integer ifPayment)
|
{
|
this.ifPayment = ifPayment;
|
}
|
|
public Integer getIfPayment()
|
{
|
return ifPayment;
|
}
|
public void setCollectionUnit(String collectionUnit)
|
{
|
this.collectionUnit = collectionUnit;
|
}
|
|
public String getCollectionUnit()
|
{
|
return collectionUnit;
|
}
|
public void setViolationFines(BigDecimal violationFines)
|
{
|
this.violationFines = violationFines;
|
}
|
|
public BigDecimal getViolationFines()
|
{
|
return violationFines;
|
}
|
public void setViolationDeductPoints(Integer violationDeductPoints)
|
{
|
this.violationDeductPoints = violationDeductPoints;
|
}
|
|
public Integer getViolationDeductPoints()
|
{
|
return violationDeductPoints;
|
}
|
public void setRenewTime(Date renewTime)
|
{
|
this.renewTime = renewTime;
|
}
|
|
public Date getRenewTime()
|
{
|
return renewTime;
|
}
|
public void setViolationPicture(String violationPicture)
|
{
|
this.violationPicture = violationPicture;
|
}
|
|
public String getViolationPicture()
|
{
|
return violationPicture;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("carId", getCarId())
|
.append("driverId", getDriverId())
|
.append("driverName", getDriverName())
|
.append("driverPhone", getDriverPhone())
|
.append("violationTime", getViolationTime())
|
.append("violationAddress", getViolationAddress())
|
.append("violationBehavior", getViolationBehavior())
|
.append("ifHandle", getIfHandle())
|
.append("handleTime", getHandleTime())
|
.append("ifPayment", getIfPayment())
|
.append("collectionUnit", getCollectionUnit())
|
.append("violationFines", getViolationFines())
|
.append("violationDeductPoints", getViolationDeductPoints())
|
.append("renewTime", getRenewTime())
|
.append("violationPicture", getViolationPicture())
|
.append("createBy", getCreateBy())
|
.append("updateBy", getUpdateBy())
|
.append("createTime", getCreateTime())
|
.append("updateTime", getUpdateTime())
|
.append("disabled", getDisabled())
|
.toString();
|
}
|
}
|