Pu Zhibing
2025-06-06 b1f2f102034b4433201225b67a9fc78c08e532f0
ManagementIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/model/TCar.java
@@ -1,5 +1,6 @@
package com.stylefeng.guns.modular.system.model;
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.enums.IdType;
import java.util.Date;
import com.baomidou.mybatisplus.annotations.TableId;
@@ -58,6 +59,14 @@
     * 车辆照片
     */
    private String carPhoto;
    /**
     * 保险照片
     */
    private String insurancePhoto;
    /**
     * 人车合影照片
     */
    private String peopleAndCarsPhone;
    /**
     * 车辆类型
     */
@@ -184,6 +193,16 @@
    private Integer addObjectId;
    private Integer authState;
    /**
     * 上传司机id
     */
    @TableField("driverId")
    private Integer driverId;
    /**
     * google车辆id
     */
    @TableField("vehicleId")
    private String vehicleId;
    public Integer getAuthState() {
        return authState;
@@ -521,6 +540,38 @@
        this.commercialType = commercialType;
    }
    public Integer getDriverId() {
        return driverId;
    }
    public void setDriverId(Integer driverId) {
        this.driverId = driverId;
    }
    public String getPeopleAndCarsPhone() {
        return peopleAndCarsPhone;
    }
    public void setPeopleAndCarsPhone(String peopleAndCarsPhone) {
        this.peopleAndCarsPhone = peopleAndCarsPhone;
    }
    public String getInsurancePhoto() {
        return insurancePhoto;
    }
    public void setInsurancePhoto(String insurancePhoto) {
        this.insurancePhoto = insurancePhoto;
    }
    public String getVehicleId() {
        return vehicleId;
    }
    public void setVehicleId(String vehicleId) {
        this.vehicleId = vehicleId;
    }
    @Override
    protected Serializable pkVal() {
        return this.id;