|
@@ -1,9 +1,12 @@
|
|
|
package com.jzg.quotation.taiping.crawler.entity.response;
|
|
package com.jzg.quotation.taiping.crawler.entity.response;
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
|
|
+import com.jzg.quotation.commons.filter.CarModelsFilter;
|
|
|
import lombok.Data;
|
|
import lombok.Data;
|
|
|
import lombok.NoArgsConstructor;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
|
|
|
|
|
|
+import java.io.Serial;
|
|
|
|
|
+import java.io.Serializable;
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
|
|
@@ -14,7 +17,10 @@ import java.util.List;
|
|
|
**/
|
|
**/
|
|
|
@NoArgsConstructor
|
|
@NoArgsConstructor
|
|
|
@Data
|
|
@Data
|
|
|
-public class TaiPingCrawlerBrandNameQueryData {
|
|
|
|
|
|
|
+public class TaiPingCrawlerBrandNameQueryData implements Serializable {
|
|
|
|
|
+
|
|
|
|
|
+ @Serial
|
|
|
|
|
+ private static final long serialVersionUID = 2826282729401353122L;
|
|
|
|
|
|
|
|
@JsonProperty("tipMsg")
|
|
@JsonProperty("tipMsg")
|
|
|
private String tipMsg;
|
|
private String tipMsg;
|
|
@@ -51,27 +57,38 @@ public class TaiPingCrawlerBrandNameQueryData {
|
|
|
|
|
|
|
|
@NoArgsConstructor
|
|
@NoArgsConstructor
|
|
|
@Data
|
|
@Data
|
|
|
- public static class ButtonMapDTO {
|
|
|
|
|
|
|
+ public static class ButtonMapDTO implements Serializable {
|
|
|
|
|
+ @Serial
|
|
|
|
|
+ private static final long serialVersionUID = 6598989982434830440L;
|
|
|
|
|
+
|
|
|
@JsonProperty("nextProcess")
|
|
@JsonProperty("nextProcess")
|
|
|
private String nextProcess;
|
|
private String nextProcess;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@NoArgsConstructor
|
|
@NoArgsConstructor
|
|
|
@Data
|
|
@Data
|
|
|
- public static class ButtonPathMapDTO {
|
|
|
|
|
|
|
+ public static class ButtonPathMapDTO implements Serializable {
|
|
|
|
|
+ @Serial
|
|
|
|
|
+ private static final long serialVersionUID = -5522343682120122957L;
|
|
|
|
|
+
|
|
|
@JsonProperty("nextProcess")
|
|
@JsonProperty("nextProcess")
|
|
|
private String nextProcess;
|
|
private String nextProcess;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@NoArgsConstructor
|
|
@NoArgsConstructor
|
|
|
@Data
|
|
@Data
|
|
|
- public static class ItemMotorDtoListDTO {
|
|
|
|
|
|
|
+ public static class ItemMotorDtoListDTO implements Serializable, CarModelsFilter {
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ @Serial
|
|
|
|
|
+ private static final long serialVersionUID = 7223203626043524051L;
|
|
|
|
|
+
|
|
|
@JsonProperty("loancarCompany")
|
|
@JsonProperty("loancarCompany")
|
|
|
private Object loancarCompany;
|
|
private Object loancarCompany;
|
|
|
@JsonProperty("whiteListFlag")
|
|
@JsonProperty("whiteListFlag")
|
|
|
- private Object whiteListFlag;
|
|
|
|
|
|
|
+ private String whiteListFlag;
|
|
|
@JsonProperty("whiteListElecContactNo")
|
|
@JsonProperty("whiteListElecContactNo")
|
|
|
- private Object whiteListElecContactNo;
|
|
|
|
|
|
|
+ private String whiteListElecContactNo;
|
|
|
@JsonProperty("cxtPrice")
|
|
@JsonProperty("cxtPrice")
|
|
|
private Object cxtPrice;
|
|
private Object cxtPrice;
|
|
|
@JsonProperty("tonCountJy")
|
|
@JsonProperty("tonCountJy")
|
|
@@ -89,9 +106,9 @@ public class TaiPingCrawlerBrandNameQueryData {
|
|
|
@JsonProperty("fleetName")
|
|
@JsonProperty("fleetName")
|
|
|
private Object fleetName;
|
|
private Object fleetName;
|
|
|
@JsonProperty("classificationOfCDW")
|
|
@JsonProperty("classificationOfCDW")
|
|
|
- private Object classificationOfCDW;
|
|
|
|
|
|
|
+ private String classificationOfCDW;
|
|
|
@JsonProperty("clauseType")
|
|
@JsonProperty("clauseType")
|
|
|
- private Object clauseType;
|
|
|
|
|
|
|
+ private String clauseType;
|
|
|
@JsonProperty("agreeDriverInd")
|
|
@JsonProperty("agreeDriverInd")
|
|
|
private Object agreeDriverInd;
|
|
private Object agreeDriverInd;
|
|
|
@JsonProperty("newDeviceInd")
|
|
@JsonProperty("newDeviceInd")
|
|
@@ -101,7 +118,7 @@ public class TaiPingCrawlerBrandNameQueryData {
|
|
|
@JsonProperty("taxiInd")
|
|
@JsonProperty("taxiInd")
|
|
|
private Object taxiInd;
|
|
private Object taxiInd;
|
|
|
@JsonProperty("licenseNo")
|
|
@JsonProperty("licenseNo")
|
|
|
- private Object licenseNo;
|
|
|
|
|
|
|
+ private String licenseNo;
|
|
|
@JsonProperty("licenseNoA")
|
|
@JsonProperty("licenseNoA")
|
|
|
private Object licenseNoA;
|
|
private Object licenseNoA;
|
|
|
@JsonProperty("licenseColorCode")
|
|
@JsonProperty("licenseColorCode")
|
|
@@ -109,7 +126,7 @@ public class TaiPingCrawlerBrandNameQueryData {
|
|
|
@JsonProperty("carKindCode")
|
|
@JsonProperty("carKindCode")
|
|
|
private String carKindCode;
|
|
private String carKindCode;
|
|
|
@JsonProperty("hkFlag")
|
|
@JsonProperty("hkFlag")
|
|
|
- private Object hkFlag;
|
|
|
|
|
|
|
+ private String hkFlag;
|
|
|
@JsonProperty("hkLicenseNo")
|
|
@JsonProperty("hkLicenseNo")
|
|
|
private Object hkLicenseNo;
|
|
private Object hkLicenseNo;
|
|
|
@JsonProperty("engineNo")
|
|
@JsonProperty("engineNo")
|
|
@@ -123,9 +140,9 @@ public class TaiPingCrawlerBrandNameQueryData {
|
|
|
@JsonProperty("withinChinaInd")
|
|
@JsonProperty("withinChinaInd")
|
|
|
private Object withinChinaInd;
|
|
private Object withinChinaInd;
|
|
|
@JsonProperty("runAreaCode")
|
|
@JsonProperty("runAreaCode")
|
|
|
- private Object runAreaCode;
|
|
|
|
|
|
|
+ private String runAreaCode;
|
|
|
@JsonProperty("runAreaName")
|
|
@JsonProperty("runAreaName")
|
|
|
- private Object runAreaName;
|
|
|
|
|
|
|
+ private String runAreaName;
|
|
|
@JsonProperty("runMiles")
|
|
@JsonProperty("runMiles")
|
|
|
private Object runMiles;
|
|
private Object runMiles;
|
|
|
@JsonProperty("enrollDate")
|
|
@JsonProperty("enrollDate")
|
|
@@ -167,7 +184,7 @@ public class TaiPingCrawlerBrandNameQueryData {
|
|
|
@JsonProperty("doorCount")
|
|
@JsonProperty("doorCount")
|
|
|
private Object doorCount;
|
|
private Object doorCount;
|
|
|
@JsonProperty("colorCode")
|
|
@JsonProperty("colorCode")
|
|
|
- private Object colorCode;
|
|
|
|
|
|
|
+ private String colorCode;
|
|
|
@JsonProperty("safeDevice")
|
|
@JsonProperty("safeDevice")
|
|
|
private Object safeDevice;
|
|
private Object safeDevice;
|
|
|
@JsonProperty("parkSite")
|
|
@JsonProperty("parkSite")
|
|
@@ -197,7 +214,7 @@ public class TaiPingCrawlerBrandNameQueryData {
|
|
|
@JsonProperty("estimateValue")
|
|
@JsonProperty("estimateValue")
|
|
|
private Object estimateValue;
|
|
private Object estimateValue;
|
|
|
@JsonProperty("purchasePrice")
|
|
@JsonProperty("purchasePrice")
|
|
|
- private Double purchasePrice;
|
|
|
|
|
|
|
+ private String purchasePrice;
|
|
|
@JsonProperty("actualValue")
|
|
@JsonProperty("actualValue")
|
|
|
private Object actualValue;
|
|
private Object actualValue;
|
|
|
@JsonProperty("invoiceNo")
|
|
@JsonProperty("invoiceNo")
|
|
@@ -223,7 +240,7 @@ public class TaiPingCrawlerBrandNameQueryData {
|
|
|
@JsonProperty("hirePurchase")
|
|
@JsonProperty("hirePurchase")
|
|
|
private Object hirePurchase;
|
|
private Object hirePurchase;
|
|
|
@JsonProperty("localVehicleInd")
|
|
@JsonProperty("localVehicleInd")
|
|
|
- private Object localVehicleInd;
|
|
|
|
|
|
|
+ private String localVehicleInd;
|
|
|
@JsonProperty("glassType")
|
|
@JsonProperty("glassType")
|
|
|
private String glassType;
|
|
private String glassType;
|
|
|
@JsonProperty("peccancyRecord")
|
|
@JsonProperty("peccancyRecord")
|
|
@@ -281,15 +298,15 @@ public class TaiPingCrawlerBrandNameQueryData {
|
|
|
@JsonProperty("settleAddressCode")
|
|
@JsonProperty("settleAddressCode")
|
|
|
private Object settleAddressCode;
|
|
private Object settleAddressCode;
|
|
|
@JsonProperty("useNatureShow")
|
|
@JsonProperty("useNatureShow")
|
|
|
- private Object useNatureShow;
|
|
|
|
|
|
|
+ private String useNatureShow;
|
|
|
@JsonProperty("attachNature")
|
|
@JsonProperty("attachNature")
|
|
|
private Object attachNature;
|
|
private Object attachNature;
|
|
|
@JsonProperty("carUseType")
|
|
@JsonProperty("carUseType")
|
|
|
- private Object carUseType;
|
|
|
|
|
|
|
+ private String carUseType;
|
|
|
@JsonProperty("carTypeCode")
|
|
@JsonProperty("carTypeCode")
|
|
|
private Object carTypeCode;
|
|
private Object carTypeCode;
|
|
|
@JsonProperty("carKindCodeShow")
|
|
@JsonProperty("carKindCodeShow")
|
|
|
- private Object carKindCodeShow;
|
|
|
|
|
|
|
+ private String carKindCodeShow;
|
|
|
@JsonProperty("carNewOldFlag")
|
|
@JsonProperty("carNewOldFlag")
|
|
|
private Object carNewOldFlag;
|
|
private Object carNewOldFlag;
|
|
|
@JsonProperty("subProposalNo")
|
|
@JsonProperty("subProposalNo")
|
|
@@ -319,7 +336,7 @@ public class TaiPingCrawlerBrandNameQueryData {
|
|
|
@JsonProperty("familyCode")
|
|
@JsonProperty("familyCode")
|
|
|
private String familyCode;
|
|
private String familyCode;
|
|
|
@JsonProperty("frameNoHeteroType")
|
|
@JsonProperty("frameNoHeteroType")
|
|
|
- private Object frameNoHeteroType;
|
|
|
|
|
|
|
+ private String frameNoHeteroType;
|
|
|
@JsonProperty("updateTime")
|
|
@JsonProperty("updateTime")
|
|
|
private Object updateTime;
|
|
private Object updateTime;
|
|
|
@JsonProperty("hazardType")
|
|
@JsonProperty("hazardType")
|
|
@@ -327,7 +344,7 @@ public class TaiPingCrawlerBrandNameQueryData {
|
|
|
@JsonProperty("vehicleCategory")
|
|
@JsonProperty("vehicleCategory")
|
|
|
private String vehicleCategory;
|
|
private String vehicleCategory;
|
|
|
@JsonProperty("colorName")
|
|
@JsonProperty("colorName")
|
|
|
- private Object colorName;
|
|
|
|
|
|
|
+ private String colorName;
|
|
|
@JsonProperty("previousPrpallCompany")
|
|
@JsonProperty("previousPrpallCompany")
|
|
|
private Object previousPrpallCompany;
|
|
private Object previousPrpallCompany;
|
|
|
@JsonProperty("planCode")
|
|
@JsonProperty("planCode")
|
|
@@ -335,21 +352,21 @@ public class TaiPingCrawlerBrandNameQueryData {
|
|
|
@JsonProperty("riskCode")
|
|
@JsonProperty("riskCode")
|
|
|
private Object riskCode;
|
|
private Object riskCode;
|
|
|
@JsonProperty("groupCode")
|
|
@JsonProperty("groupCode")
|
|
|
- private Object groupCode;
|
|
|
|
|
|
|
+ private String groupCode;
|
|
|
@JsonProperty("simpleFrameNo")
|
|
@JsonProperty("simpleFrameNo")
|
|
|
private Object simpleFrameNo;
|
|
private Object simpleFrameNo;
|
|
|
@JsonProperty("chgOwnerFlag")
|
|
@JsonProperty("chgOwnerFlag")
|
|
|
- private Object chgOwnerFlag;
|
|
|
|
|
|
|
+ private String chgOwnerFlag;
|
|
|
@JsonProperty("carKindShowSub")
|
|
@JsonProperty("carKindShowSub")
|
|
|
private Object carKindShowSub;
|
|
private Object carKindShowSub;
|
|
|
@JsonProperty("transferDate")
|
|
@JsonProperty("transferDate")
|
|
|
private Object transferDate;
|
|
private Object transferDate;
|
|
|
@JsonProperty("loanVehicleFlag")
|
|
@JsonProperty("loanVehicleFlag")
|
|
|
- private Object loanVehicleFlag;
|
|
|
|
|
|
|
+ private String loanVehicleFlag;
|
|
|
@JsonProperty("singeinDate")
|
|
@JsonProperty("singeinDate")
|
|
|
private Object singeinDate;
|
|
private Object singeinDate;
|
|
|
@JsonProperty("specialCarFlag")
|
|
@JsonProperty("specialCarFlag")
|
|
|
- private Object specialCarFlag;
|
|
|
|
|
|
|
+ private String specialCarFlag;
|
|
|
@JsonProperty("vehicleCode")
|
|
@JsonProperty("vehicleCode")
|
|
|
private Object vehicleCode;
|
|
private Object vehicleCode;
|
|
|
@JsonProperty("ciModelCode")
|
|
@JsonProperty("ciModelCode")
|
|
@@ -363,11 +380,11 @@ public class TaiPingCrawlerBrandNameQueryData {
|
|
|
@JsonProperty("negotiatedActualValue")
|
|
@JsonProperty("negotiatedActualValue")
|
|
|
private Object negotiatedActualValue;
|
|
private Object negotiatedActualValue;
|
|
|
@JsonProperty("isSpecialCarFlag")
|
|
@JsonProperty("isSpecialCarFlag")
|
|
|
- private Object isSpecialCarFlag;
|
|
|
|
|
|
|
+ private String isSpecialCarFlag;
|
|
|
@JsonProperty("carCheckValidTime")
|
|
@JsonProperty("carCheckValidTime")
|
|
|
private Object carCheckValidTime;
|
|
private Object carCheckValidTime;
|
|
|
@JsonProperty("engineModel")
|
|
@JsonProperty("engineModel")
|
|
|
- private Object engineModel;
|
|
|
|
|
|
|
+ private String engineModel;
|
|
|
@JsonProperty("configModel")
|
|
@JsonProperty("configModel")
|
|
|
private Object configModel;
|
|
private Object configModel;
|
|
|
@JsonProperty("carYear")
|
|
@JsonProperty("carYear")
|
|
@@ -391,7 +408,7 @@ public class TaiPingCrawlerBrandNameQueryData {
|
|
|
@JsonProperty("hfName")
|
|
@JsonProperty("hfName")
|
|
|
private String hfName;
|
|
private String hfName;
|
|
|
@JsonProperty("carID")
|
|
@JsonProperty("carID")
|
|
|
- private Object carID;
|
|
|
|
|
|
|
+ private String carID;
|
|
|
@JsonProperty("carIDCheckInd")
|
|
@JsonProperty("carIDCheckInd")
|
|
|
private Object carIDCheckInd;
|
|
private Object carIDCheckInd;
|
|
|
@JsonProperty("carIDVersionNo")
|
|
@JsonProperty("carIDVersionNo")
|
|
@@ -405,7 +422,7 @@ public class TaiPingCrawlerBrandNameQueryData {
|
|
|
@JsonProperty("shVehicleCode")
|
|
@JsonProperty("shVehicleCode")
|
|
|
private Object shVehicleCode;
|
|
private Object shVehicleCode;
|
|
|
@JsonProperty("jgVehicleCheckCode")
|
|
@JsonProperty("jgVehicleCheckCode")
|
|
|
- private Object jgVehicleCheckCode;
|
|
|
|
|
|
|
+ private String jgVehicleCheckCode;
|
|
|
@JsonProperty("driveUseAttribute")
|
|
@JsonProperty("driveUseAttribute")
|
|
|
private Object driveUseAttribute;
|
|
private Object driveUseAttribute;
|
|
|
@JsonProperty("platformBlacklistNum")
|
|
@JsonProperty("platformBlacklistNum")
|
|
@@ -413,19 +430,19 @@ public class TaiPingCrawlerBrandNameQueryData {
|
|
|
@JsonProperty("carBlacklistInd")
|
|
@JsonProperty("carBlacklistInd")
|
|
|
private Object carBlacklistInd;
|
|
private Object carBlacklistInd;
|
|
|
@JsonProperty("commercialCarGrade")
|
|
@JsonProperty("commercialCarGrade")
|
|
|
- private Object commercialCarGrade;
|
|
|
|
|
|
|
+ private String commercialCarGrade;
|
|
|
@JsonProperty("commercialCarGradeSource")
|
|
@JsonProperty("commercialCarGradeSource")
|
|
|
- private Object commercialCarGradeSource;
|
|
|
|
|
|
|
+ private String commercialCarGradeSource;
|
|
|
@JsonProperty("sale4SFlag")
|
|
@JsonProperty("sale4SFlag")
|
|
|
private Object sale4SFlag;
|
|
private Object sale4SFlag;
|
|
|
@JsonProperty("saleCompany")
|
|
@JsonProperty("saleCompany")
|
|
|
- private Object saleCompany;
|
|
|
|
|
|
|
+ private String saleCompany;
|
|
|
@JsonProperty("saleAreaCode")
|
|
@JsonProperty("saleAreaCode")
|
|
|
- private Object saleAreaCode;
|
|
|
|
|
|
|
+ private String saleAreaCode;
|
|
|
@JsonProperty("saleAreaName")
|
|
@JsonProperty("saleAreaName")
|
|
|
- private Object saleAreaName;
|
|
|
|
|
|
|
+ private String saleAreaName;
|
|
|
@JsonProperty("provinceEcdemicVehicleFlag")
|
|
@JsonProperty("provinceEcdemicVehicleFlag")
|
|
|
- private Object provinceEcdemicVehicleFlag;
|
|
|
|
|
|
|
+ private String provinceEcdemicVehicleFlag;
|
|
|
@JsonProperty("vehicleInitialRegister")
|
|
@JsonProperty("vehicleInitialRegister")
|
|
|
private Object vehicleInitialRegister;
|
|
private Object vehicleInitialRegister;
|
|
|
@JsonProperty("specialVehicleFlagCode")
|
|
@JsonProperty("specialVehicleFlagCode")
|
|
@@ -433,51 +450,51 @@ public class TaiPingCrawlerBrandNameQueryData {
|
|
|
@JsonProperty("specialVehicleFlagMean")
|
|
@JsonProperty("specialVehicleFlagMean")
|
|
|
private Object specialVehicleFlagMean;
|
|
private Object specialVehicleFlagMean;
|
|
|
@JsonProperty("vehicleQueryType")
|
|
@JsonProperty("vehicleQueryType")
|
|
|
- private Object vehicleQueryType;
|
|
|
|
|
|
|
+ private String vehicleQueryType;
|
|
|
@JsonProperty("distinguishVanAreaCode")
|
|
@JsonProperty("distinguishVanAreaCode")
|
|
|
private Object distinguishVanAreaCode;
|
|
private Object distinguishVanAreaCode;
|
|
|
@JsonProperty("cvFlag")
|
|
@JsonProperty("cvFlag")
|
|
|
- private Object cvFlag;
|
|
|
|
|
|
|
+ private String cvFlag;
|
|
|
@JsonProperty("principalCHDVehicleGrade")
|
|
@JsonProperty("principalCHDVehicleGrade")
|
|
|
- private Object principalCHDVehicleGrade;
|
|
|
|
|
|
|
+ private String principalCHDVehicleGrade;
|
|
|
@JsonProperty("principalCHDTeamGrade")
|
|
@JsonProperty("principalCHDTeamGrade")
|
|
|
- private Object principalCHDTeamGrade;
|
|
|
|
|
|
|
+ private String principalCHDTeamGrade;
|
|
|
@JsonProperty("principalZJXLGrade")
|
|
@JsonProperty("principalZJXLGrade")
|
|
|
private Object principalZJXLGrade;
|
|
private Object principalZJXLGrade;
|
|
|
@JsonProperty("principalLicenseNo")
|
|
@JsonProperty("principalLicenseNo")
|
|
|
- private Object principalLicenseNo;
|
|
|
|
|
|
|
+ private String principalLicenseNo;
|
|
|
@JsonProperty("principalValidPolicyCount")
|
|
@JsonProperty("principalValidPolicyCount")
|
|
|
- private Object principalValidPolicyCount;
|
|
|
|
|
|
|
+ private String principalValidPolicyCount;
|
|
|
@JsonProperty("chdVehicleGrade")
|
|
@JsonProperty("chdVehicleGrade")
|
|
|
- private Object chdVehicleGrade;
|
|
|
|
|
|
|
+ private String chdVehicleGrade;
|
|
|
@JsonProperty("chdTeamGrade")
|
|
@JsonProperty("chdTeamGrade")
|
|
|
- private Object chdTeamGrade;
|
|
|
|
|
|
|
+ private String chdTeamGrade;
|
|
|
@JsonProperty("zjxlGrade")
|
|
@JsonProperty("zjxlGrade")
|
|
|
- private Object zjxlGrade;
|
|
|
|
|
|
|
+ private String zjxlGrade;
|
|
|
@JsonProperty("principalQuotationDiscount")
|
|
@JsonProperty("principalQuotationDiscount")
|
|
|
- private Object principalQuotationDiscount;
|
|
|
|
|
|
|
+ private String principalQuotationDiscount;
|
|
|
@JsonProperty("newEnergyFlag")
|
|
@JsonProperty("newEnergyFlag")
|
|
|
- private Object newEnergyFlag;
|
|
|
|
|
|
|
+ private String newEnergyFlag;
|
|
|
@JsonProperty("energyType")
|
|
@JsonProperty("energyType")
|
|
|
- private Object energyType;
|
|
|
|
|
|
|
+ private String energyType;
|
|
|
@JsonProperty("range")
|
|
@JsonProperty("range")
|
|
|
- private Object range;
|
|
|
|
|
|
|
+ private String range;
|
|
|
@JsonProperty("energyTypeDescribe")
|
|
@JsonProperty("energyTypeDescribe")
|
|
|
- private Object energyTypeDescribe;
|
|
|
|
|
|
|
+ private String energyTypeDescribe;
|
|
|
@JsonProperty("newEnergyClauseFlag")
|
|
@JsonProperty("newEnergyClauseFlag")
|
|
|
- private Object newEnergyClauseFlag;
|
|
|
|
|
|
|
+ private String newEnergyClauseFlag;
|
|
|
@JsonProperty("callC05")
|
|
@JsonProperty("callC05")
|
|
|
private Object callC05;
|
|
private Object callC05;
|
|
|
@JsonProperty("callC05Result")
|
|
@JsonProperty("callC05Result")
|
|
|
private Object callC05Result;
|
|
private Object callC05Result;
|
|
|
@JsonProperty("vehicleStyleUniqueId")
|
|
@JsonProperty("vehicleStyleUniqueId")
|
|
|
- private Object vehicleStyleUniqueId;
|
|
|
|
|
|
|
+ private String vehicleStyleUniqueId;
|
|
|
@JsonProperty("certificateType")
|
|
@JsonProperty("certificateType")
|
|
|
- private Object certificateType;
|
|
|
|
|
|
|
+ private String certificateType;
|
|
|
@JsonProperty("certificateNo")
|
|
@JsonProperty("certificateNo")
|
|
|
- private Object certificateNo;
|
|
|
|
|
|
|
+ private String certificateNo;
|
|
|
@JsonProperty("certificateReportDate")
|
|
@JsonProperty("certificateReportDate")
|
|
|
- private Object certificateReportDate;
|
|
|
|
|
|
|
+ private String certificateReportDate;
|
|
|
@JsonProperty("carGroupName")
|
|
@JsonProperty("carGroupName")
|
|
|
private String carGroupName;
|
|
private String carGroupName;
|
|
|
@JsonProperty("scUpdateTime")
|
|
@JsonProperty("scUpdateTime")
|
|
@@ -499,9 +516,9 @@ public class TaiPingCrawlerBrandNameQueryData {
|
|
|
@JsonProperty("rideSharingScore")
|
|
@JsonProperty("rideSharingScore")
|
|
|
private Object rideSharingScore;
|
|
private Object rideSharingScore;
|
|
|
@JsonProperty("negotiatedActualValueType")
|
|
@JsonProperty("negotiatedActualValueType")
|
|
|
- private Object negotiatedActualValueType;
|
|
|
|
|
|
|
+ private String negotiatedActualValueType;
|
|
|
@JsonProperty("vehicleFatteryFlag")
|
|
@JsonProperty("vehicleFatteryFlag")
|
|
|
- private Object vehicleFatteryFlag;
|
|
|
|
|
|
|
+ private String vehicleFatteryFlag;
|
|
|
@JsonProperty("riskFactorShow")
|
|
@JsonProperty("riskFactorShow")
|
|
|
private Object riskFactorShow;
|
|
private Object riskFactorShow;
|
|
|
@JsonProperty("driveCityCode")
|
|
@JsonProperty("driveCityCode")
|
|
@@ -511,7 +528,7 @@ public class TaiPingCrawlerBrandNameQueryData {
|
|
|
@JsonProperty("bsVehicleCategory")
|
|
@JsonProperty("bsVehicleCategory")
|
|
|
private Object bsVehicleCategory;
|
|
private Object bsVehicleCategory;
|
|
|
@JsonProperty("totalTractionMass")
|
|
@JsonProperty("totalTractionMass")
|
|
|
- private Object totalTractionMass;
|
|
|
|
|
|
|
+ private String totalTractionMass;
|
|
|
@JsonProperty("updateDate")
|
|
@JsonProperty("updateDate")
|
|
|
private Object updateDate;
|
|
private Object updateDate;
|
|
|
@JsonProperty("configType")
|
|
@JsonProperty("configType")
|
|
@@ -519,7 +536,7 @@ public class TaiPingCrawlerBrandNameQueryData {
|
|
|
@JsonProperty("useNatureShowName")
|
|
@JsonProperty("useNatureShowName")
|
|
|
private Object useNatureShowName;
|
|
private Object useNatureShowName;
|
|
|
@JsonProperty("vehicleCategoryName")
|
|
@JsonProperty("vehicleCategoryName")
|
|
|
- private Object vehicleCategoryName;
|
|
|
|
|
|
|
+ private String vehicleCategoryName;
|
|
|
@JsonProperty("carUseTypeName")
|
|
@JsonProperty("carUseTypeName")
|
|
|
private Object carUseTypeName;
|
|
private Object carUseTypeName;
|
|
|
@JsonProperty("companyCode")
|
|
@JsonProperty("companyCode")
|
|
@@ -529,7 +546,7 @@ public class TaiPingCrawlerBrandNameQueryData {
|
|
|
@JsonProperty("ciModelClass")
|
|
@JsonProperty("ciModelClass")
|
|
|
private String ciModelClass;
|
|
private String ciModelClass;
|
|
|
@JsonProperty("glassTypeName")
|
|
@JsonProperty("glassTypeName")
|
|
|
- private Object glassTypeName;
|
|
|
|
|
|
|
+ private String glassTypeName;
|
|
|
@JsonProperty("renewalNo")
|
|
@JsonProperty("renewalNo")
|
|
|
private Object renewalNo;
|
|
private Object renewalNo;
|
|
|
@JsonProperty("vehicleId")
|
|
@JsonProperty("vehicleId")
|
|
@@ -549,17 +566,17 @@ public class TaiPingCrawlerBrandNameQueryData {
|
|
|
@JsonProperty("fgSwitch")
|
|
@JsonProperty("fgSwitch")
|
|
|
private Object fgSwitch;
|
|
private Object fgSwitch;
|
|
|
@JsonProperty("licenseColorName")
|
|
@JsonProperty("licenseColorName")
|
|
|
- private Object licenseColorName;
|
|
|
|
|
|
|
+ private String licenseColorName;
|
|
|
@JsonProperty("attachNatureName")
|
|
@JsonProperty("attachNatureName")
|
|
|
private Object attachNatureName;
|
|
private Object attachNatureName;
|
|
|
@JsonProperty("localVehicleIndName")
|
|
@JsonProperty("localVehicleIndName")
|
|
|
private Object localVehicleIndName;
|
|
private Object localVehicleIndName;
|
|
|
@JsonProperty("licenseTypeName")
|
|
@JsonProperty("licenseTypeName")
|
|
|
- private Object licenseTypeName;
|
|
|
|
|
|
|
+ private String licenseTypeName;
|
|
|
@JsonProperty("motorTypeName")
|
|
@JsonProperty("motorTypeName")
|
|
|
- private Object motorTypeName;
|
|
|
|
|
|
|
+ private String motorTypeName;
|
|
|
@JsonProperty("carKindCodeShowName")
|
|
@JsonProperty("carKindCodeShowName")
|
|
|
- private Object carKindCodeShowName;
|
|
|
|
|
|
|
+ private String carKindCodeShowName;
|
|
|
@JsonProperty("pureRiskPremium")
|
|
@JsonProperty("pureRiskPremium")
|
|
|
private Object pureRiskPremium;
|
|
private Object pureRiskPremium;
|
|
|
@JsonProperty("demandNo")
|
|
@JsonProperty("demandNo")
|
|
@@ -597,7 +614,7 @@ public class TaiPingCrawlerBrandNameQueryData {
|
|
|
@JsonProperty("startDate")
|
|
@JsonProperty("startDate")
|
|
|
private Object startDate;
|
|
private Object startDate;
|
|
|
@JsonProperty("taxVehicleCategory")
|
|
@JsonProperty("taxVehicleCategory")
|
|
|
- private Object taxVehicleCategory;
|
|
|
|
|
|
|
+ private String taxVehicleCategory;
|
|
|
@JsonProperty("riskStartDate")
|
|
@JsonProperty("riskStartDate")
|
|
|
private Object riskStartDate;
|
|
private Object riskStartDate;
|
|
|
@JsonProperty("riskEndDate")
|
|
@JsonProperty("riskEndDate")
|
|
@@ -611,8 +628,11 @@ public class TaiPingCrawlerBrandNameQueryData {
|
|
|
@JsonProperty("fullWeight")
|
|
@JsonProperty("fullWeight")
|
|
|
private String fullWeight;
|
|
private String fullWeight;
|
|
|
@JsonProperty("nerveCentre")
|
|
@JsonProperty("nerveCentre")
|
|
|
- private Object nerveCentre;
|
|
|
|
|
|
|
+ private String nerveCentre;
|
|
|
@JsonProperty("thirdRunRoute")
|
|
@JsonProperty("thirdRunRoute")
|
|
|
- private Object thirdRunRoute;
|
|
|
|
|
|
|
+ private String thirdRunRoute;
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|