package com.stylefeng.guns.modular.shunfeng.model;
|
|
import java.io.Serializable;
|
|
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 wumeng123
|
* @since 2020-04-26
|
*/
|
@TableName("app_driver_ride")
|
public class DriverRide extends Model<DriverRide> {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* ID
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
/**
|
* 申请时间
|
*/
|
private Date addTime;
|
/**
|
* 所属公司
|
*/
|
private Integer companyId;
|
/**
|
* 车辆品牌
|
*/
|
private String carType;
|
/**
|
* 车牌
|
*/
|
private String carNum;
|
/**
|
* 驾驶证号
|
*/
|
private String license;
|
/**
|
* 驾驶证图片
|
*/
|
private String licenseImg;
|
/**
|
* 交强险到期时间
|
*/
|
private String comInsuranceTime;
|
/**
|
* 交强险照片
|
*/
|
private String comInsuranceImg;
|
/**
|
* 商业险到期时间
|
*/
|
private String businessInsuranceTime;
|
/**
|
* 商业险图片
|
*/
|
private String businessInsuranceImg;
|
/**
|
* 驾乘人员责任险到期时间
|
*/
|
private String dutyInsuranceTime;
|
/**
|
* 驾乘人员责任险照片
|
*/
|
private String dutyInsuranceImg;
|
/**
|
* 年检到期时间
|
*/
|
private String annualInspectionTime;
|
/**
|
* 年检图片
|
*/
|
private String annualInspectionImg;
|
/**
|
* 用户id
|
*/
|
private Integer userId;
|
/**
|
* 1等待审核,2审核通过,3不通过
|
*/
|
private Integer state;
|
/**
|
* 别人的邀请码
|
*/
|
private String byInviteCode;
|
/**
|
* 司机余额
|
*/
|
private Double balance;
|
/**
|
* 评价数量
|
*/
|
private Integer evaluateNum;
|
/**
|
* 总接单数
|
*/
|
private Integer totalOrders;
|
/**
|
* 评价总分
|
*/
|
private Integer evaluateScore;
|
/**
|
* 邀请id
|
*/
|
private Integer yqId;
|
/**
|
* 品牌id
|
*/
|
private Integer brandId;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Date getAddTime() {
|
return addTime;
|
}
|
|
public void setAddTime(Date addTime) {
|
this.addTime = addTime;
|
}
|
|
public Integer getCompanyId() {
|
return companyId;
|
}
|
|
public void setCompanyId(Integer companyId) {
|
this.companyId = companyId;
|
}
|
|
public String getCarType() {
|
return carType;
|
}
|
|
public void setCarType(String carType) {
|
this.carType = carType;
|
}
|
|
public String getCarNum() {
|
return carNum;
|
}
|
|
public void setCarNum(String carNum) {
|
this.carNum = carNum;
|
}
|
|
public String getLicense() {
|
return license;
|
}
|
|
public void setLicense(String license) {
|
this.license = license;
|
}
|
|
public String getLicenseImg() {
|
return licenseImg;
|
}
|
|
public void setLicenseImg(String licenseImg) {
|
this.licenseImg = licenseImg;
|
}
|
|
public String getComInsuranceTime() {
|
return comInsuranceTime;
|
}
|
|
public void setComInsuranceTime(String comInsuranceTime) {
|
this.comInsuranceTime = comInsuranceTime;
|
}
|
|
public String getComInsuranceImg() {
|
return comInsuranceImg;
|
}
|
|
public void setComInsuranceImg(String comInsuranceImg) {
|
this.comInsuranceImg = comInsuranceImg;
|
}
|
|
public String getBusinessInsuranceTime() {
|
return businessInsuranceTime;
|
}
|
|
public void setBusinessInsuranceTime(String businessInsuranceTime) {
|
this.businessInsuranceTime = businessInsuranceTime;
|
}
|
|
public String getBusinessInsuranceImg() {
|
return businessInsuranceImg;
|
}
|
|
public void setBusinessInsuranceImg(String businessInsuranceImg) {
|
this.businessInsuranceImg = businessInsuranceImg;
|
}
|
|
public String getDutyInsuranceTime() {
|
return dutyInsuranceTime;
|
}
|
|
public void setDutyInsuranceTime(String dutyInsuranceTime) {
|
this.dutyInsuranceTime = dutyInsuranceTime;
|
}
|
|
public String getDutyInsuranceImg() {
|
return dutyInsuranceImg;
|
}
|
|
public void setDutyInsuranceImg(String dutyInsuranceImg) {
|
this.dutyInsuranceImg = dutyInsuranceImg;
|
}
|
|
public String getAnnualInspectionTime() {
|
return annualInspectionTime;
|
}
|
|
public void setAnnualInspectionTime(String annualInspectionTime) {
|
this.annualInspectionTime = annualInspectionTime;
|
}
|
|
public String getAnnualInspectionImg() {
|
return annualInspectionImg;
|
}
|
|
public void setAnnualInspectionImg(String annualInspectionImg) {
|
this.annualInspectionImg = annualInspectionImg;
|
}
|
|
public Integer getUserId() {
|
return userId;
|
}
|
|
public void setUserId(Integer userId) {
|
this.userId = userId;
|
}
|
|
public Integer getState() {
|
return state;
|
}
|
|
public void setState(Integer state) {
|
this.state = state;
|
}
|
|
public String getByInviteCode() {
|
return byInviteCode;
|
}
|
|
public void setByInviteCode(String byInviteCode) {
|
this.byInviteCode = byInviteCode;
|
}
|
|
public Double getBalance() {
|
return balance;
|
}
|
|
public void setBalance(Double balance) {
|
this.balance = balance;
|
}
|
|
public Integer getEvaluateNum() {
|
return evaluateNum;
|
}
|
|
public void setEvaluateNum(Integer evaluateNum) {
|
this.evaluateNum = evaluateNum;
|
}
|
|
public Integer getTotalOrders() {
|
return totalOrders;
|
}
|
|
public void setTotalOrders(Integer totalOrders) {
|
this.totalOrders = totalOrders;
|
}
|
|
public Integer getEvaluateScore() {
|
return evaluateScore;
|
}
|
|
public void setEvaluateScore(Integer evaluateScore) {
|
this.evaluateScore = evaluateScore;
|
}
|
|
public Integer getYqId() {
|
return yqId;
|
}
|
|
public void setYqId(Integer yqId) {
|
this.yqId = yqId;
|
}
|
|
public Integer getBrandId() {
|
return brandId;
|
}
|
|
public void setBrandId(Integer brandId) {
|
this.brandId = brandId;
|
}
|
|
@Override
|
protected Serializable pkVal() {
|
return this.id;
|
}
|
|
@Override
|
public String toString() {
|
return "DriverRide{" +
|
"id=" + id +
|
", addTime=" + addTime +
|
", companyId=" + companyId +
|
", carType=" + carType +
|
", carNum=" + carNum +
|
", license=" + license +
|
", licenseImg=" + licenseImg +
|
", comInsuranceTime=" + comInsuranceTime +
|
", comInsuranceImg=" + comInsuranceImg +
|
", businessInsuranceTime=" + businessInsuranceTime +
|
", businessInsuranceImg=" + businessInsuranceImg +
|
", dutyInsuranceTime=" + dutyInsuranceTime +
|
", dutyInsuranceImg=" + dutyInsuranceImg +
|
", annualInspectionTime=" + annualInspectionTime +
|
", annualInspectionImg=" + annualInspectionImg +
|
", userId=" + userId +
|
", state=" + state +
|
", byInviteCode=" + byInviteCode +
|
"}";
|
}
|
}
|