|
@@ -0,0 +1,380 @@
|
|
|
|
|
+package com.ydtech.modules.order.entity.api.dajia.request;
|
|
|
|
|
+
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
|
|
+import com.ydtech.modules.order.entity.api.dajia.DaJiaBaseRequest;
|
|
|
|
|
+import lombok.Data;
|
|
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
|
|
+import lombok.NoArgsConstructor;
|
|
|
|
|
+
|
|
|
|
|
+import java.io.Serializable;
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * @version
|
|
|
|
|
+ * @description: ODR1008 车辆和客户信息确认 请求参数
|
|
|
|
|
+ * @author: wenks
|
|
|
|
|
+ * @date: 2023/11/14 16:51
|
|
|
|
|
+ **/
|
|
|
|
|
+@EqualsAndHashCode(callSuper = true)
|
|
|
|
|
+@NoArgsConstructor
|
|
|
|
|
+@Data
|
|
|
|
|
+public class ODR1008Request extends DaJiaBaseRequest {
|
|
|
|
|
+
|
|
|
|
|
+ private static final long serialVersionUID = -3271826016394642480L;
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("body")
|
|
|
|
|
+ private BodyDTO body;
|
|
|
|
|
+
|
|
|
|
|
+ @NoArgsConstructor
|
|
|
|
|
+ @Data
|
|
|
|
|
+ public static class BodyDTO implements Serializable {
|
|
|
|
|
+
|
|
|
|
|
+ private static final long serialVersionUID = 7312734581391918243L;
|
|
|
|
|
+ @JsonProperty("applicantInfo")
|
|
|
|
|
+ private ApplicantInfoDTO applicantInfo;
|
|
|
|
|
+ @JsonProperty("businessInfo")
|
|
|
|
|
+ private BusinessInfoDTO businessInfo;
|
|
|
|
|
+ @JsonProperty("insuredInfo")
|
|
|
|
|
+ private InsuredInfoDTO insuredInfo;
|
|
|
|
|
+ @JsonProperty("jqProdNo")
|
|
|
|
|
+ private String jqProdNo;
|
|
|
|
|
+ @JsonProperty("orderNo")
|
|
|
|
|
+ private String orderNo;
|
|
|
|
|
+ @JsonProperty("syProdNo")
|
|
|
|
|
+ private String syProdNo;
|
|
|
|
|
+ @JsonProperty("vehicleInfo")
|
|
|
|
|
+ private VehicleInfoDTO vehicleInfo;
|
|
|
|
|
+ @JsonProperty("vehicleOwnerInfo")
|
|
|
|
|
+ private VehicleOwnerInfoDTO vehicleOwnerInfo;
|
|
|
|
|
+
|
|
|
|
|
+ @NoArgsConstructor
|
|
|
|
|
+ @Data
|
|
|
|
|
+ public static class ApplicantInfoDTO implements Serializable{
|
|
|
|
|
+ private static final long serialVersionUID = 2368014689374178222L;
|
|
|
|
|
+ @JsonProperty("applicantCBusiness")
|
|
|
|
|
+ private Integer applicantCBusiness;
|
|
|
|
|
+ @JsonProperty("applicantCCertfCde")
|
|
|
|
|
+ private Long applicantCCertfCde;
|
|
|
|
|
+ @JsonProperty("applicantCCertfCls")
|
|
|
|
|
+ private String applicantCCertfCls;
|
|
|
|
|
+ @JsonProperty("applicantCCountry")
|
|
|
|
|
+ private Integer applicantCCountry;
|
|
|
|
|
+ @JsonProperty("applicantCCusRiskLvl")
|
|
|
|
|
+ private Integer applicantCCusRiskLvl;
|
|
|
|
|
+ @JsonProperty("applicantCNation")
|
|
|
|
|
+ private Integer applicantCNation;
|
|
|
|
|
+ @JsonProperty("applicantCProfissionXiq1")
|
|
|
|
|
+ private Integer applicantCProfissionXiq1;
|
|
|
|
|
+ @JsonProperty("applicantCProfissionXiq2")
|
|
|
|
|
+ private Integer applicantCProfissionXiq2;
|
|
|
|
|
+ @JsonProperty("applicantCde")
|
|
|
|
|
+ private Long applicantCde;
|
|
|
|
|
+ @JsonProperty("applicantChasalesCertfCde")
|
|
|
|
|
+ private Long applicantChasalesCertfCde;
|
|
|
|
|
+ @JsonProperty("applicantChasalesCertfCls")
|
|
|
|
|
+ private String applicantChasalesCertfCls;
|
|
|
|
|
+ @JsonProperty("applicantChasalesClntMrk")
|
|
|
|
|
+ private Integer applicantChasalesClntMrk;
|
|
|
|
|
+ @JsonProperty("applicantChasalesEmail")
|
|
|
|
|
+ private String applicantChasalesEmail;
|
|
|
|
|
+ @JsonProperty("applicantChasalesMobile")
|
|
|
|
|
+ private Long applicantChasalesMobile;
|
|
|
|
|
+ @JsonProperty("applicantChasalesNme")
|
|
|
|
|
+ private String applicantChasalesNme;
|
|
|
|
|
+ @JsonProperty("applicantCity")
|
|
|
|
|
+ private Integer applicantCity;
|
|
|
|
|
+ @JsonProperty("applicantClntAddr")
|
|
|
|
|
+ private String applicantClntAddr;
|
|
|
|
|
+ @JsonProperty("applicantClntMrk")
|
|
|
|
|
+ private Integer applicantClntMrk;
|
|
|
|
|
+ @JsonProperty("applicantCounty")
|
|
|
|
|
+ private Integer applicantCounty;
|
|
|
|
|
+ @JsonProperty("applicantEmPower")
|
|
|
|
|
+ private Integer applicantEmPower;
|
|
|
|
|
+ @JsonProperty("applicantEmail")
|
|
|
|
|
+ private String applicantEmail;
|
|
|
|
|
+ @JsonProperty("applicantEthnicity")
|
|
|
|
|
+ private String applicantEthnicity;
|
|
|
|
|
+ @JsonProperty("applicantHomeAddr")
|
|
|
|
|
+ private String applicantHomeAddr;
|
|
|
|
|
+ @JsonProperty("applicantIssueOrg")
|
|
|
|
|
+ private String applicantIssueOrg;
|
|
|
|
|
+ @JsonProperty("applicantMobile")
|
|
|
|
|
+ private Long applicantMobile;
|
|
|
|
|
+ @JsonProperty("applicantNme")
|
|
|
|
|
+ private String applicantNme;
|
|
|
|
|
+ @JsonProperty("applicantNote")
|
|
|
|
|
+ private String applicantNote;
|
|
|
|
|
+ @JsonProperty("applicantPayerRel")
|
|
|
|
|
+ private Integer applicantPayerRel;
|
|
|
|
|
+ @JsonProperty("applicantPhoneCertfCde")
|
|
|
|
|
+ private Long applicantPhoneCertfCde;
|
|
|
|
|
+ @JsonProperty("applicantPhoneCertiType")
|
|
|
|
|
+ private String applicantPhoneCertiType;
|
|
|
|
|
+ @JsonProperty("applicantPhoneName")
|
|
|
|
|
+ private String applicantPhoneName;
|
|
|
|
|
+ @JsonProperty("applicantPhoneType")
|
|
|
|
|
+ private String applicantPhoneType;
|
|
|
|
|
+ @JsonProperty("applicantProvince")
|
|
|
|
|
+ private Integer applicantProvince;
|
|
|
|
|
+ @JsonProperty("applicantSex")
|
|
|
|
|
+ private String applicantSex;
|
|
|
|
|
+ @JsonProperty("applicantTBirthday")
|
|
|
|
|
+ private String applicantTBirthday;
|
|
|
|
|
+ @JsonProperty("applicantTEffectiveDate")
|
|
|
|
|
+ private String applicantTEffectiveDate;
|
|
|
|
|
+ @JsonProperty("applicantTExpiredDate")
|
|
|
|
|
+ private String applicantTExpiredDate;
|
|
|
|
|
+ @JsonProperty("applicantWorkDpt")
|
|
|
|
|
+ private Integer applicantWorkDpt;
|
|
|
|
|
+ @JsonProperty("applicantZipCde")
|
|
|
|
|
+ private Integer applicantZipCde;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @NoArgsConstructor
|
|
|
|
|
+ @Data
|
|
|
|
|
+ public static class BusinessInfoDTO implements Serializable{
|
|
|
|
|
+ private static final long serialVersionUID = 2058043103906170015L;
|
|
|
|
|
+ @JsonProperty("busiAgentNme")
|
|
|
|
|
+ private String busiAgentNme;
|
|
|
|
|
+ @JsonProperty("busiBrkrCde")
|
|
|
|
|
+ private String busiBrkrCde;
|
|
|
|
|
+ @JsonProperty("busiBsnsTyp")
|
|
|
|
|
+ private Integer busiBsnsTyp;
|
|
|
|
|
+ @JsonProperty("busiChaSalesId")
|
|
|
|
|
+ private Integer busiChaSalesId;
|
|
|
|
|
+ @JsonProperty("busiChannelSrc")
|
|
|
|
|
+ private String busiChannelSrc;
|
|
|
|
|
+ @JsonProperty("busiCoopCde")
|
|
|
|
|
+ private String busiCoopCde;
|
|
|
|
|
+ @JsonProperty("busiCoopNme")
|
|
|
|
|
+ private String busiCoopNme;
|
|
|
|
|
+ @JsonProperty("busiDataFlag")
|
|
|
|
|
+ private String busiDataFlag;
|
|
|
|
|
+ @JsonProperty("busiDataSrc")
|
|
|
|
|
+ private Integer busiDataSrc;
|
|
|
|
|
+ @JsonProperty("busiDptCde")
|
|
|
|
|
+ private String busiDptCde;
|
|
|
|
|
+ @JsonProperty("busiGarageCode")
|
|
|
|
|
+ private String busiGarageCode;
|
|
|
|
|
+ @JsonProperty("busiGarageName")
|
|
|
|
|
+ private String busiGarageName;
|
|
|
|
|
+ @JsonProperty("busiGrantDptCde")
|
|
|
|
|
+ private String busiGrantDptCde;
|
|
|
|
|
+ @JsonProperty("busiGrantDptNme")
|
|
|
|
|
+ private String busiGrantDptNme;
|
|
|
|
|
+ @JsonProperty("busiId")
|
|
|
|
|
+ private Long busiId;
|
|
|
|
|
+ @JsonProperty("busiOpdpt")
|
|
|
|
|
+ private String busiOpdpt;
|
|
|
|
|
+ @JsonProperty("busiOprCde")
|
|
|
|
|
+ private String busiOprCde;
|
|
|
|
|
+ @JsonProperty("busiOprNme")
|
|
|
|
|
+ private String busiOprNme;
|
|
|
|
|
+ @JsonProperty("busiRecSubChannel")
|
|
|
|
|
+ private String busiRecSubChannel;
|
|
|
|
|
+ @JsonProperty("busiRecommendCde")
|
|
|
|
|
+ private String busiRecommendCde;
|
|
|
|
|
+ @JsonProperty("busiRepairFlag")
|
|
|
|
|
+ private Integer busiRepairFlag;
|
|
|
|
|
+ @JsonProperty("busiServiceCode")
|
|
|
|
|
+ private String busiServiceCode;
|
|
|
|
|
+ @JsonProperty("busiSlsCde")
|
|
|
|
|
+ private Integer busiSlsCde;
|
|
|
|
|
+ @JsonProperty("busiSlsId")
|
|
|
|
|
+ private Long busiSlsId;
|
|
|
|
|
+ @JsonProperty("busiSlsNme")
|
|
|
|
|
+ private String busiSlsNme;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @NoArgsConstructor
|
|
|
|
|
+ @Data
|
|
|
|
|
+ public static class InsuredInfoDTO implements Serializable{
|
|
|
|
|
+ private static final long serialVersionUID = 1471113087138506721L;
|
|
|
|
|
+ @JsonProperty("insuredBusiness")
|
|
|
|
|
+ private Integer insuredBusiness;
|
|
|
|
|
+ @JsonProperty("insuredCde")
|
|
|
|
|
+ private Long insuredCde;
|
|
|
|
|
+ @JsonProperty("insuredCertfCde")
|
|
|
|
|
+ private String insuredCertfCde;
|
|
|
|
|
+ @JsonProperty("insuredCertfCls")
|
|
|
|
|
+ private String insuredCertfCls;
|
|
|
|
|
+ @JsonProperty("insuredCity")
|
|
|
|
|
+ private Integer insuredCity;
|
|
|
|
|
+ @JsonProperty("insuredClntAddr")
|
|
|
|
|
+ private String insuredClntAddr;
|
|
|
|
|
+ @JsonProperty("insuredClntMrk")
|
|
|
|
|
+ private Integer insuredClntMrk;
|
|
|
|
|
+ @JsonProperty("insuredCountry")
|
|
|
|
|
+ private Integer insuredCountry;
|
|
|
|
|
+ @JsonProperty("insuredCounty")
|
|
|
|
|
+ private Integer insuredCounty;
|
|
|
|
|
+ @JsonProperty("insuredCusRiskLvl")
|
|
|
|
|
+ private Integer insuredCusRiskLvl;
|
|
|
|
|
+ @JsonProperty("insuredEmail")
|
|
|
|
|
+ private String insuredEmail;
|
|
|
|
|
+ @JsonProperty("insuredEthnicity")
|
|
|
|
|
+ private String insuredEthnicity;
|
|
|
|
|
+ @JsonProperty("insuredHomeAddr")
|
|
|
|
|
+ private String insuredHomeAddr;
|
|
|
|
|
+ @JsonProperty("insuredIssueOrg")
|
|
|
|
|
+ private String insuredIssueOrg;
|
|
|
|
|
+ @JsonProperty("insuredMobile")
|
|
|
|
|
+ private Long insuredMobile;
|
|
|
|
|
+ @JsonProperty("insuredNation")
|
|
|
|
|
+ private Integer insuredNation;
|
|
|
|
|
+ @JsonProperty("insuredNme")
|
|
|
|
|
+ private String insuredNme;
|
|
|
|
|
+ @JsonProperty("insuredPhoneCertfCde")
|
|
|
|
|
+ private Long insuredPhoneCertfCde;
|
|
|
|
|
+ @JsonProperty("insuredPhoneCertiType")
|
|
|
|
|
+ private String insuredPhoneCertiType;
|
|
|
|
|
+ @JsonProperty("insuredPhoneName")
|
|
|
|
|
+ private String insuredPhoneName;
|
|
|
|
|
+ @JsonProperty("insuredPhoneType")
|
|
|
|
|
+ private String insuredPhoneType;
|
|
|
|
|
+ @JsonProperty("insuredProfissionXiq1")
|
|
|
|
|
+ private Integer insuredProfissionXiq1;
|
|
|
|
|
+ @JsonProperty("insuredProfissionXiq2")
|
|
|
|
|
+ private Integer insuredProfissionXiq2;
|
|
|
|
|
+ @JsonProperty("insuredProvince")
|
|
|
|
|
+ private Integer insuredProvince;
|
|
|
|
|
+ @JsonProperty("insuredResidAddr")
|
|
|
|
|
+ private String insuredResidAddr;
|
|
|
|
|
+ @JsonProperty("insuredSex")
|
|
|
|
|
+ private String insuredSex;
|
|
|
|
|
+ @JsonProperty("insuredTBirthday")
|
|
|
|
|
+ private String insuredTBirthday;
|
|
|
|
|
+ @JsonProperty("insuredTEffectiveDate")
|
|
|
|
|
+ private String insuredTEffectiveDate;
|
|
|
|
|
+ @JsonProperty("insuredTExpiredDate")
|
|
|
|
|
+ private String insuredTExpiredDate;
|
|
|
|
|
+ @JsonProperty("insuredWorkDpt")
|
|
|
|
|
+ private Integer insuredWorkDpt;
|
|
|
|
|
+ @JsonProperty("insuredZipCde")
|
|
|
|
|
+ private Integer insuredZipCde;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @NoArgsConstructor
|
|
|
|
|
+ @Data
|
|
|
|
|
+ public static class VehicleInfoDTO implements Serializable{
|
|
|
|
|
+ private static final long serialVersionUID = 8099502440213359843L;
|
|
|
|
|
+ @JsonProperty("vehicleAnswer")
|
|
|
|
|
+ private String vehicleAnswer;
|
|
|
|
|
+ @JsonProperty("vehicleBrandId")
|
|
|
|
|
+ private String vehicleBrandId;
|
|
|
|
|
+ @JsonProperty("vehicleCSaleCompany")
|
|
|
|
|
+ private String vehicleCSaleCompany;
|
|
|
|
|
+ @JsonProperty("vehicleChgOwnerFlag")
|
|
|
|
|
+ private Integer vehicleChgOwnerFlag;
|
|
|
|
|
+ @JsonProperty("vehicleEcdemicMrk")
|
|
|
|
|
+ private Integer vehicleEcdemicMrk;
|
|
|
|
|
+ @JsonProperty("vehicleEngNo")
|
|
|
|
|
+ private Integer vehicleEngNo;
|
|
|
|
|
+ @JsonProperty("vehicleFrmNo")
|
|
|
|
|
+ private String vehicleFrmNo;
|
|
|
|
|
+ @JsonProperty("vehicleFstRegYmBar")
|
|
|
|
|
+ private String vehicleFstRegYmBar;
|
|
|
|
|
+ @JsonProperty("vehicleFuelType")
|
|
|
|
|
+ private Integer vehicleFuelType;
|
|
|
|
|
+ @JsonProperty("vehicleIs4SShop")
|
|
|
|
|
+ private Integer vehicleIs4SShop;
|
|
|
|
|
+ @JsonProperty("vehicleIsQuery")
|
|
|
|
|
+ private Integer vehicleIsQuery;
|
|
|
|
|
+ @JsonProperty("vehicleLoanVehicleFlag")
|
|
|
|
|
+ private Integer vehicleLoanVehicleFlag;
|
|
|
|
|
+ @JsonProperty("vehicleModelCde")
|
|
|
|
|
+ private String vehicleModelCde;
|
|
|
|
|
+ @JsonProperty("vehicleModelEnergyType")
|
|
|
|
|
+ private Integer vehicleModelEnergyType;
|
|
|
|
|
+ @JsonProperty("vehicleModelNme")
|
|
|
|
|
+ private String vehicleModelNme;
|
|
|
|
|
+ @JsonProperty("vehicleNConsultPurchaseValue")
|
|
|
|
|
+ private Integer vehicleNConsultPurchaseValue;
|
|
|
|
|
+ @JsonProperty("vehicleNCurbWt")
|
|
|
|
|
+ private Integer vehicleNCurbWt;
|
|
|
|
|
+ @JsonProperty("vehicleNDisplacement")
|
|
|
|
|
+ private Integer vehicleNDisplacement;
|
|
|
|
|
+ @JsonProperty("vehicleNNewPurchaseValue")
|
|
|
|
|
+ private Integer vehicleNNewPurchaseValue;
|
|
|
|
|
+ @JsonProperty("vehicleNPower")
|
|
|
|
|
+ private Double vehicleNPower;
|
|
|
|
|
+ @JsonProperty("vehicleNPureRange")
|
|
|
|
|
+ private Integer vehicleNPureRange;
|
|
|
|
|
+ @JsonProperty("vehicleNSeatNum")
|
|
|
|
|
+ private Integer vehicleNSeatNum;
|
|
|
|
|
+ @JsonProperty("vehicleNTonage")
|
|
|
|
|
+ private Integer vehicleNTonage;
|
|
|
|
|
+ @JsonProperty("vehicleNewMrk")
|
|
|
|
|
+ private Integer vehicleNewMrk;
|
|
|
|
|
+ @JsonProperty("vehicleNewPlate")
|
|
|
|
|
+ private Integer vehicleNewPlate;
|
|
|
|
|
+ @JsonProperty("vehiclePlateNo")
|
|
|
|
|
+ private String vehiclePlateNo;
|
|
|
|
|
+ @JsonProperty("vehiclePlateTyp")
|
|
|
|
|
+ private String vehiclePlateTyp;
|
|
|
|
|
+ @JsonProperty("vehicleRegVhlTyp")
|
|
|
|
|
+ private String vehicleRegVhlTyp;
|
|
|
|
|
+ @JsonProperty("vehicleSaleAreaCode")
|
|
|
|
|
+ private Integer vehicleSaleAreaCode;
|
|
|
|
|
+ @JsonProperty("vehicleSpecialRiskFlag")
|
|
|
|
|
+ private Integer vehicleSpecialRiskFlag;
|
|
|
|
|
+ @JsonProperty("vehicleTBuyCarDate")
|
|
|
|
|
+ private String vehicleTBuyCarDate;
|
|
|
|
|
+ @JsonProperty("vehicleTCertificateDate")
|
|
|
|
|
+ private String vehicleTCertificateDate;
|
|
|
|
|
+ @JsonProperty("vehicleTTransferDate")
|
|
|
|
|
+ private String vehicleTTransferDate;
|
|
|
|
|
+ @JsonProperty("vehicleTVhlCertDate")
|
|
|
|
|
+ private String vehicleTVhlCertDate;
|
|
|
|
|
+ @JsonProperty("vehicleTfiSpecialMrk")
|
|
|
|
|
+ private Integer vehicleTfiSpecialMrk;
|
|
|
|
|
+ @JsonProperty("vehicleTraUsageCde")
|
|
|
|
|
+ private Integer vehicleTraUsageCde;
|
|
|
|
|
+ @JsonProperty("vehicleUsageCde")
|
|
|
|
|
+ private Integer vehicleUsageCde;
|
|
|
|
|
+ @JsonProperty("vehicleVhlCertNo")
|
|
|
|
|
+ private Long vehicleVhlCertNo;
|
|
|
|
|
+ @JsonProperty("vehicleVhlCertType")
|
|
|
|
|
+ private String vehicleVhlCertType;
|
|
|
|
|
+ @JsonProperty("vehicleVhlTyp")
|
|
|
|
|
+ private Integer vehicleVhlTyp;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @NoArgsConstructor
|
|
|
|
|
+ @Data
|
|
|
|
|
+ public static class VehicleOwnerInfoDTO implements Serializable{
|
|
|
|
|
+ private static final long serialVersionUID = 3725955472263478330L;
|
|
|
|
|
+ @JsonProperty("vehicleOwnerCCertfCde")
|
|
|
|
|
+ private Long vehicleOwnerCCertfCde;
|
|
|
|
|
+ @JsonProperty("vehicleOwnerCCertfCls")
|
|
|
|
|
+ private String vehicleOwnerCCertfCls;
|
|
|
|
|
+ @JsonProperty("vehicleOwnerCClntAddr")
|
|
|
|
|
+ private String vehicleOwnerCClntAddr;
|
|
|
|
|
+ @JsonProperty("vehicleOwnerCContactTel")
|
|
|
|
|
+ private Long vehicleOwnerCContactTel;
|
|
|
|
|
+ @JsonProperty("vehicleOwnerCCountry")
|
|
|
|
|
+ private Integer vehicleOwnerCCountry;
|
|
|
|
|
+ @JsonProperty("vehicleOwnerCEmail")
|
|
|
|
|
+ private String vehicleOwnerCEmail;
|
|
|
|
|
+ @JsonProperty("vehicleOwnerCMobile")
|
|
|
|
|
+ private Long vehicleOwnerCMobile;
|
|
|
|
|
+ @JsonProperty("vehicleOwnerCNation")
|
|
|
|
|
+ private Integer vehicleOwnerCNation;
|
|
|
|
|
+ @JsonProperty("vehicleOwnerCOwnerCls")
|
|
|
|
|
+ private Integer vehicleOwnerCOwnerCls;
|
|
|
|
|
+ @JsonProperty("vehicleOwnerCOwnerNme")
|
|
|
|
|
+ private String vehicleOwnerCOwnerNme;
|
|
|
|
|
+ @JsonProperty("vehicleOwnerCSex")
|
|
|
|
|
+ private String vehicleOwnerCSex;
|
|
|
|
|
+ @JsonProperty("vehicleOwnerCWorkdptKind")
|
|
|
|
|
+ private Integer vehicleOwnerCWorkdptKind;
|
|
|
|
|
+ @JsonProperty("vehicleOwnerCZipCde")
|
|
|
|
|
+ private Integer vehicleOwnerCZipCde;
|
|
|
|
|
+ @JsonProperty("vehicleOwnerTBirthday")
|
|
|
|
|
+ private String vehicleOwnerTBirthday;
|
|
|
|
|
+ @JsonProperty("vehicleOwnerTExpiredDate")
|
|
|
|
|
+ private String vehicleOwnerTExpiredDate;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+}
|