package com.stylefeng.guns.modular.system.model;
|
|
import com.baomidou.mybatisplus.enums.IdType;
|
import com.baomidou.mybatisplus.annotations.TableId;
|
import com.baomidou.mybatisplus.annotations.TableField;
|
import com.baomidou.mybatisplus.activerecord.Model;
|
import com.baomidou.mybatisplus.annotations.TableName;
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* <p>
|
* 系统设置司机分账账期
|
* </p>
|
*
|
* @author stylefeng
|
* @since 2023-03-17
|
*/
|
@TableName("t_driver_pay_days")
|
public class TDriverPayDays extends Model<TDriverPayDays> {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
/**
|
* 公司id
|
*/
|
@TableField("company_id")
|
private Integer companyId;
|
/**
|
* 天数
|
*/
|
private Integer day;
|
@TableField("updateTime")
|
private Date updateTime;
|
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Integer getCompanyId() {
|
return companyId;
|
}
|
|
public void setCompanyId(Integer companyId) {
|
this.companyId = companyId;
|
}
|
|
public Integer getDay() {
|
return day;
|
}
|
|
public void setDay(Integer day) {
|
this.day = day;
|
}
|
|
@Override
|
protected Serializable pkVal() {
|
return this.id;
|
}
|
|
@Override
|
public String toString() {
|
return "TDriverPayDays{" +
|
"id=" + id +
|
", companyId=" + companyId +
|
", day=" + day +
|
"}";
|
}
|
}
|