package com.stylefeng.guns.modular.shunfeng.model;
|
|
import com.baomidou.mybatisplus.activerecord.Model;
|
import com.baomidou.mybatisplus.annotations.TableField;
|
import com.baomidou.mybatisplus.annotations.TableId;
|
import com.baomidou.mybatisplus.annotations.TableName;
|
import com.baomidou.mybatisplus.enums.IdType;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
|
/**
|
* <p>
|
* 顺风车司机
|
* </p>
|
*
|
* @author stylefeng123
|
* @since 2020-04-27
|
*/
|
@TableName("app_driver_ride")
|
public class AppDriverRide extends Model<AppDriverRide> {
|
|
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 String remark;
|
/**
|
* 状态 1=正常 2=禁用
|
*/
|
private Integer status;
|
|
/**
|
* 是否删除 0否,1是
|
*/
|
private Integer isDelete;
|
|
public Integer getIsDelete() {
|
return isDelete;
|
}
|
|
public void setIsDelete(Integer isDelete) {
|
this.isDelete = isDelete;
|
}
|
/**
|
* 用户电话(所属条件)
|
*/
|
@TableField(exist = false)
|
private String phone;
|
/**
|
* 用户真实名称
|
*/
|
@TableField(exist = false)
|
private String realName;
|
/**
|
* 是否为异常订单(0否,1是)
|
*/
|
@TableField(exist = false)
|
private Integer excep;
|
|
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 String getPhone() {
|
return phone;
|
}
|
|
public void setPhone(String phone) {
|
this.phone = phone;
|
}
|
|
public Integer getStatus() {
|
return status;
|
}
|
|
public void setStatus(Integer status) {
|
this.status = status;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
public String getRealName() {
|
return realName;
|
}
|
|
public void setRealName(String realName) {
|
this.realName = realName;
|
}
|
|
public Integer getExcep() {
|
return excep;
|
}
|
|
public void setExcep(Integer excep) {
|
this.excep = excep;
|
}
|
|
@Override
|
protected Serializable pkVal() {
|
return this.id;
|
}
|
|
@Override
|
public String toString() {
|
return "AppDriverRide{" +
|
"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 +
|
"}";
|
}
|
}
|