From 0f9a91a7609e6623ada0f8b5a9ee878e77e5aa32 Mon Sep 17 00:00:00 2001 From: zhibing.pu <393733352@qq.com> Date: 星期五, 21 六月 2024 10:01:59 +0800 Subject: [PATCH] 修改google地图对接bug --- DriverIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/model/Car.java | 205 +------------------------------------------------- 1 files changed, 7 insertions(+), 198 deletions(-) diff --git a/DriverIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/model/Car.java b/DriverIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/model/Car.java index ca27d18..9cabd7f 100644 --- a/DriverIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/model/Car.java +++ b/DriverIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/model/Car.java @@ -4,12 +4,14 @@ import com.baomidou.mybatisplus.annotations.TableId; import com.baomidou.mybatisplus.annotations.TableName; import com.baomidou.mybatisplus.enums.IdType; +import lombok.Data; import java.util.Date; /** * 车辆 */ +@Data @TableName("t_car") public class Car { /** @@ -106,14 +108,6 @@ private Integer authState; - public Integer getAuthState() { - return authState; - } - - public void setAuthState(Integer authState) { - this.authState = authState; - } - /** * 添加来源(1=司机注册 2=平台添加 3=分公司添加 4=加盟商添加) */ @@ -129,194 +123,9 @@ */ @TableField("driverId") private Integer driverId; - - public Integer getDriverId() { - return driverId; - } - - public void setDriverId(Integer driverId) { - this.driverId = driverId; - } - - public Integer getId() { - return id; - } - - public void setId(Integer id) { - this.id = id; - } - - public Integer getIsPlatCar() { - return isPlatCar; - } - - public void setIsPlatCar(Integer isPlatCar) { - this.isPlatCar = isPlatCar; - } - - public Integer getCompanyId() { - return companyId; - } - - public void setCompanyId(Integer companyId) { - this.companyId = companyId; - } - - public Integer getFranchiseeId() { - return franchiseeId; - } - - public void setFranchiseeId(Integer franchiseeId) { - this.franchiseeId = franchiseeId; - } - - public String getCarColor() { - return carColor; - } - - public void setCarColor(String carColor) { - this.carColor = carColor; - } - - public Integer getCarModelId() { - return carModelId; - } - - public void setCarModelId(Integer carModelId) { - this.carModelId = carModelId; - } - - public Integer getCarBrandId() { - return carBrandId; - } - - public void setCarBrandId(Integer carBrandId) { - this.carBrandId = carBrandId; - } - - public String getCarLicensePlate() { - return carLicensePlate; - } - - public void setCarLicensePlate(String carLicensePlate) { - this.carLicensePlate = carLicensePlate; - } - - public String getCarPhoto() { - return carPhoto; - } - - public void setCarPhoto(String carPhoto) { - this.carPhoto = carPhoto; - } - - public String getDrivingLicenseNumber() { - return drivingLicenseNumber; - } - - public void setDrivingLicenseNumber(String drivingLicenseNumber) { - this.drivingLicenseNumber = drivingLicenseNumber; - } - - public String getDrivingLicensePhoto() { - return drivingLicensePhoto; - } - - public void setDrivingLicensePhoto(String drivingLicensePhoto) { - this.drivingLicensePhoto = drivingLicensePhoto; - } - - public Date getAnnualInspectionTime() { - return annualInspectionTime; - } - - public void setAnnualInspectionTime(Date annualInspectionTime) { - this.annualInspectionTime = annualInspectionTime; - } - - public String getInsurancePhoto() { - return insurancePhoto; - } - - public void setInsurancePhoto(String insurancePhoto) { - this.insurancePhoto = insurancePhoto; - } - - public Date getCommercialInsuranceTime() { - return commercialInsuranceTime; - } - - public String getPeopleAndCarsPhone() { - return peopleAndCarsPhone; - } - - public void setPeopleAndCarsPhone(String peopleAndCarsPhone) { - this.peopleAndCarsPhone = peopleAndCarsPhone; - } - - public void setCommercialInsuranceTime(Date commercialInsuranceTime) { - this.commercialInsuranceTime = commercialInsuranceTime; - } - - public Date getInsertTime() { - return insertTime; - } - - public void setInsertTime(Date insertTime) { - this.insertTime = insertTime; - } - - public Integer getState() { - return state; - } - - public void setState(Integer state) { - this.state = state; - } - - public Integer getAddType() { - return addType; - } - - public void setAddType(Integer addType) { - this.addType = addType; - } - - public Integer getAddObjectId() { - return addObjectId; - } - - public void setAddObjectId(Integer addObjectId) { - this.addObjectId = addObjectId; - } - - public Date getDrivingLicenseEndTime() { - return drivingLicenseEndTime; - } - - public void setDrivingLicenseEndTime(Date drivingLicenseEndTime) { - this.drivingLicenseEndTime = drivingLicenseEndTime; - } - - @Override - public String toString() { - return "Car{" + - "id=" + id + - ", isPlatCar=" + isPlatCar + - ", companyId=" + companyId + - ", carColor='" + carColor + '\'' + - ", carModelId=" + carModelId + - ", carBrandId=" + carBrandId + - ", carLicensePlate='" + carLicensePlate + '\'' + - ", carPhoto='" + carPhoto + '\'' + - ", drivingLicenseNumber='" + drivingLicenseNumber + '\'' + - ", drivingLicensePhoto='" + drivingLicensePhoto + '\'' + - ", annualInspectionTime=" + annualInspectionTime + - ", commercialInsuranceTime=" + commercialInsuranceTime + - ", insertTime=" + insertTime + - ", state=" + state + - ", addType=" + addType + - ", addObjectId=" + addObjectId + - '}'; - } + /** + * google车辆id + */ + @TableField("vehicleId") + private String vehicleId; } -- Gitblit v1.7.1