From 45f8febad90601cdcad0b754e8a79da11d2d3561 Mon Sep 17 00:00:00 2001 From: zhibing.pu <393733352@qq.com> Date: 星期五, 21 六月 2024 10:01:06 +0800 Subject: [PATCH] 修改google地图对接bug --- UserIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/model/Car.java | 173 ++------------------------------------------------------- 1 files changed, 7 insertions(+), 166 deletions(-) diff --git a/UserIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/model/Car.java b/UserIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/model/Car.java index bdc49e1..e870905 100644 --- a/UserIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/model/Car.java +++ b/UserIGOTravel/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 { /** @@ -103,170 +105,9 @@ */ @TableField("addObjectId") private Integer addObjectId; - - 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 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; - } - - @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