|
|
@@ -24,27 +24,101 @@ public class HtCrawlerSubmitRequest implements Serializable {
|
|
|
@Serial
|
|
|
private static final long serialVersionUID = 1814925768981794647L;
|
|
|
|
|
|
- public HtCrawlerSubmitRequest(UnderwritingVo underwritingVo, HtCrawlerConfigureParameters parameters) {
|
|
|
+ public HtCrawlerSubmitRequest(UnderwritingVo underwritingVo, HtCrawlerConfigureParameters parameters, String ciCategory, String biCategory) {
|
|
|
//设置车主,投保人,被保人信息
|
|
|
List<InsOrdersCarUserInfo> insOrdersCarUserInfoList = underwritingVo.getInsOrdersCarUserInfoList();
|
|
|
- for (InsOrdersCarUserInfo insOrdersCarUserInfo : insOrdersCarUserInfoList) {
|
|
|
- switch (insOrdersCarUserInfo.getPolicyPersonType()) {
|
|
|
- case 1 :
|
|
|
- this.carOwnerType = String.valueOf(insOrdersCarUserInfo.getPersonType());
|
|
|
- this.carOwnerGender = insOrdersCarUserInfo.getGender();
|
|
|
- this.ownerAddress = insOrdersCarUserInfo.getAddr();
|
|
|
- this.carOwnerName = insOrdersCarUserInfo.getName();
|
|
|
- this.carOwnerCertiType = String.valueOf(insOrdersCarUserInfo.getCerType());
|
|
|
- this.carOwnerCertiCode = insOrdersCarUserInfo.getIdentifyNumber();
|
|
|
- this.carOwnerMobile = insOrdersCarUserInfo.getMobile();
|
|
|
- this.carOwnerAge = String.valueOf(insOrdersCarUserInfo.getAge());
|
|
|
+
|
|
|
+ InsOrdersCarUserInfo ownerInfo = null;
|
|
|
+ InsOrdersCarUserInfo applicantInfo = null;
|
|
|
+ InsOrdersCarUserInfo insuredInfo = null;
|
|
|
+
|
|
|
+ for (InsOrdersCarUserInfo userInfo : insOrdersCarUserInfoList) {
|
|
|
+ switch (userInfo.getPolicyPersonType()) {
|
|
|
+ case 1:
|
|
|
+ ownerInfo = userInfo;
|
|
|
break;
|
|
|
- case 2 :
|
|
|
+ case 2:
|
|
|
+ applicantInfo = userInfo;
|
|
|
break;
|
|
|
- case 3 :
|
|
|
+ case 3:
|
|
|
+ insuredInfo = userInfo;
|
|
|
break;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ this.carMobile = ownerInfo != null ? ownerInfo.getMobile() : "";
|
|
|
+ this.tel = ownerInfo != null ? ownerInfo.getMobile() : "";
|
|
|
+
|
|
|
+ this.ciCategory = ciCategory;
|
|
|
+ this.biCategory = biCategory;
|
|
|
+
|
|
|
+ if (ownerInfo != null) {
|
|
|
+ String[] addressParts = splitAddress(ownerInfo.getAddr());
|
|
|
+ this.province = ownerInfo.getProvinceCode();
|
|
|
+ this.city = ownerInfo.getCityCode();
|
|
|
+ this.district = ownerInfo.getCountyCode();
|
|
|
+ this.street = ownerInfo.getAddr();
|
|
|
+ this.tmpPaperscreStartDate = ownerInfo.getIdentifyValidDate() == null ? "" : ownerInfo.getIdentifyValidDate().toString().substring(0, 10);
|
|
|
+ this.paperscreStartDate = ownerInfo.getIdentifyValidDate() == null ? "" : ownerInfo.getIdentifyValidDate().toString().substring(0, 10);
|
|
|
+ this.tmpPapersValidDate = ownerInfo.getIdentifyValidEndDate() == null ? "" : ownerInfo.getIdentifyValidEndDate().toString().substring(0, 10);
|
|
|
+ this.papersValidDate = ownerInfo.getIdentifyValidEndDate() == null ? "" : ownerInfo.getIdentifyValidEndDate().toString().substring(0, 10);
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ if (insuredInfo != null) {
|
|
|
+ this.tmpInsuredPaperscreStartDate = insuredInfo.getIdentifyValidDate() == null ? "" : insuredInfo.getIdentifyValidDate().toString().substring(0, 10);
|
|
|
+ this.insuredPaperscreStartDate = insuredInfo.getIdentifyValidDate() == null ? "" : insuredInfo.getIdentifyValidDate().toString().substring(0, 10);
|
|
|
+ this.insuredPapersValidDate = insuredInfo.getIdentifyValidEndDate() == null ? "" : insuredInfo.getIdentifyValidEndDate().toString().substring(0, 10);
|
|
|
+ this.insuredPapersDate = insuredInfo.getIdentifyValidEndDate() == null ? "" : insuredInfo.getIdentifyValidEndDate().toString().substring(0, 10);
|
|
|
+ this._tel = insuredInfo.getMobile();
|
|
|
+
|
|
|
+ String[] bbAddressParts = splitAddress(insuredInfo.getAddr());
|
|
|
+ this._province = insuredInfo.getProvinceCode();
|
|
|
+ this._city = insuredInfo.getCityCode();
|
|
|
+ this._district = insuredInfo.getCountyCode();
|
|
|
+ this._street = insuredInfo.getAddr();
|
|
|
+
|
|
|
+ this.t_province = insuredInfo.getProvinceCode();
|
|
|
+ this.t_city = insuredInfo.getCityCode();
|
|
|
+ this.t_district = insuredInfo.getCountyCode();
|
|
|
+ this.t_street = insuredInfo.getAddr();
|
|
|
+
|
|
|
+ this.t_tel = insuredInfo.getMobile();
|
|
|
+
|
|
|
+ this.insuredName = insuredInfo.getName();
|
|
|
+ this.certiCode = insuredInfo.getIdentifyNumber();
|
|
|
+ this.insVocode = insuredInfo.getIdentifyNumber();
|
|
|
+
|
|
|
+ this.carOwnerName = insuredInfo.getName();
|
|
|
+ this.carOwnerCertiCode = insuredInfo.getIdentifyNumber();
|
|
|
+ this.carOwnerMobile = insuredInfo.getMobile();
|
|
|
+ this.ownerAddress = insuredInfo.getAddr();
|
|
|
+ this.carOwnerType = "1";
|
|
|
+ this.carOwnerCertiType = "01";
|
|
|
+ this.tmpProStartDate = insuredInfo.getIdentifyValidDate() == null ? "" : insuredInfo.getIdentifyValidDate().toString().substring(0, 10);
|
|
|
+ this.proStartDate = insuredInfo.getIdentifyValidDate() == null ? "" : insuredInfo.getIdentifyValidDate().toString().substring(0, 10);
|
|
|
+ this.tmpProValidDate = insuredInfo.getIdentifyValidEndDate() == null ? "" : insuredInfo.getIdentifyValidEndDate().toString().substring(0, 10);
|
|
|
+ this.proValidDate = insuredInfo.getIdentifyValidEndDate() == null ? "" : insuredInfo.getIdentifyValidEndDate().toString().substring(0, 10);
|
|
|
+
|
|
|
+
|
|
|
+ Integer gender = parseGenderFromIdCard(insuredInfo.getIdentifyNumber());
|
|
|
+ this.gender = gender != null ? String.valueOf(gender) : "1";
|
|
|
+ this.carOwnerGender = this.gender;
|
|
|
+
|
|
|
+
|
|
|
+ int age = calculateAge(insuredInfo.getIdentifyNumber());
|
|
|
+ this.tAge = String.valueOf(age);
|
|
|
+ this.carOwnerAge = this.tAge;
|
|
|
+
|
|
|
+ this.isCarOwenerFlag = (ownerInfo != null && insuredInfo != null &&
|
|
|
+ ownerInfo.getName().equals(insuredInfo.getName())) ? "Y" : "N";
|
|
|
+
|
|
|
+ this.appliBirthDay = extractBirthday(insuredInfo.getIdentifyNumber());
|
|
|
+
|
|
|
+ this.vat_telephon = insuredInfo.getMobile();
|
|
|
+ this.jInsuredName = insuredInfo.getName();
|
|
|
+ }
|
|
|
+
|
|
|
List<ClauseDTO> clauseDTOS = new ArrayList<>();
|
|
|
for (SpecialAppointmentsVo specialAppointmentsVo : underwritingVo.getSpecialAppointmentsVos()) {
|
|
|
ClauseDTO clauseDTO = new ClauseDTO();
|
|
|
@@ -55,75 +129,181 @@ public class HtCrawlerSubmitRequest implements Serializable {
|
|
|
clauseDTO.setReadonly("1");
|
|
|
clauseDTOS.add(clauseDTO);
|
|
|
}
|
|
|
+
|
|
|
+ boolean isOwnerSameAsInsured = (ownerInfo != null && insuredInfo != null &&
|
|
|
+ ownerInfo.getName().equals(insuredInfo.getName()));
|
|
|
+
|
|
|
+ if (isOwnerSameAsInsured) {
|
|
|
+ this.iisCarOwner = "Y";
|
|
|
+ this.beibaorenId = "Y";
|
|
|
+ }
|
|
|
+
|
|
|
+ ClauseDTO jxClause = new ClauseDTO();
|
|
|
+ jxClause.setChosedE("T4224");
|
|
|
+ jxClause.setClausename("交强险保额特约");
|
|
|
+ jxClause.setRiskcode("1002");
|
|
|
+ jxClause.setIsDelete("0");
|
|
|
+ jxClause.setClauses("本保单赔偿限额为:被保险人有责时死亡伤残赔偿限额为180000元;医疗费用赔偿限额为18000元;财产损失赔偿限额为2000元。被保险人无责任时,无责任死亡伤残赔偿限额为18000元;无责任医疗费用赔偿限额为1800元;无责任财产损失赔偿限额为100元。");
|
|
|
+ jxClause.setReadonly("1");
|
|
|
+ clauseDTOS.add(jxClause);
|
|
|
+
|
|
|
+ if (!isOwnerSameAsInsured && ownerInfo != null) {
|
|
|
+ ClauseDTO ownerClause = new ClauseDTO();
|
|
|
+ ownerClause.setChosedE("T0028");
|
|
|
+ ownerClause.setClausename("车主约定");
|
|
|
+ ownerClause.setRiskcode("1002");
|
|
|
+ ownerClause.setIsDelete("0");
|
|
|
+ ownerClause.setClauses("本保单行驶证车主为:" + ownerInfo.getName());
|
|
|
+ ownerClause.setReadonly("1");
|
|
|
+ clauseDTOS.add(ownerClause);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
this.clauses = clauseDTOS;
|
|
|
this.fullcomcode = parameters.getComCode();
|
|
|
+
|
|
|
+ this.quotationNo = underwritingVo.getOrder() != null ? underwritingVo.getOrder().getQuoteNo() : "";
|
|
|
+ }
|
|
|
+
|
|
|
+ private String[] splitAddress(String addr) {
|
|
|
+ if (addr == null || addr.isEmpty()) {
|
|
|
+ return new String[]{"", "", ""};
|
|
|
+ }
|
|
|
+ String[] parts = new String[]{"", "", ""};
|
|
|
+ int len = addr.length();
|
|
|
+ int start = 0;
|
|
|
+ int count = 0;
|
|
|
+
|
|
|
+ for (int i = 0; i < len && count < 2; i++) {
|
|
|
+ char c = addr.charAt(i);
|
|
|
+ if (c == '省' || c == '市' || c == '区' || c == '县') {
|
|
|
+ parts[count++] = addr.substring(start, i + 1);
|
|
|
+ start = i + 1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if (count < 3) {
|
|
|
+ parts[count] = addr.substring(start);
|
|
|
+ }
|
|
|
+
|
|
|
+ return parts;
|
|
|
+ }
|
|
|
+
|
|
|
+ private Integer parseGenderFromIdCard(String idCard) {
|
|
|
+ if (idCard == null || idCard.length() < 17) {
|
|
|
+ return 1;
|
|
|
+ }
|
|
|
+ try {
|
|
|
+ int genderDigit = Character.getNumericValue(idCard.charAt(16));
|
|
|
+ return genderDigit % 2 == 1 ? 1 : 2;
|
|
|
+ } catch (Exception e) {
|
|
|
+ return 1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private int calculateAge(String idCard) {
|
|
|
+ if (idCard == null || idCard.length() < 14) {
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
+ try {
|
|
|
+ int birthYear = Integer.parseInt(idCard.substring(6, 10));
|
|
|
+ int birthMonth = Integer.parseInt(idCard.substring(10, 12));
|
|
|
+ int birthDay = Integer.parseInt(idCard.substring(12, 14));
|
|
|
+
|
|
|
+ java.time.LocalDate now = java.time.LocalDate.now();
|
|
|
+ int currentYear = now.getYear();
|
|
|
+ int currentMonth = now.getMonthValue();
|
|
|
+ int currentDay = now.getDayOfMonth();
|
|
|
+
|
|
|
+ int age = currentYear - birthYear;
|
|
|
+
|
|
|
+ if (currentMonth < birthMonth ||
|
|
|
+ (currentMonth == birthMonth && currentDay < birthDay)) {
|
|
|
+ age--;
|
|
|
+ }
|
|
|
+
|
|
|
+ return age;
|
|
|
+ } catch (Exception e) {
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private String extractBirthday(String idCard) {
|
|
|
+ if (idCard == null || idCard.length() < 14) {
|
|
|
+ return "";
|
|
|
+ }
|
|
|
+ try {
|
|
|
+ return idCard.substring(6, 10) + "-" + idCard.substring(10, 12) + "-" + idCard.substring(12, 14);
|
|
|
+ } catch (Exception e) {
|
|
|
+ return "";
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
@JsonProperty("istransactor")
|
|
|
- private String isTransactor;
|
|
|
+ private String isTransactor = "";
|
|
|
|
|
|
@JsonProperty("istransactormobile")
|
|
|
- private String isTransactorMobile;
|
|
|
+ private String isTransactorMobile = "";
|
|
|
|
|
|
@JsonProperty("telemarketFlag")
|
|
|
- private String teleMarketFlag;
|
|
|
+ private String teleMarketFlag = "8";
|
|
|
|
|
|
@JsonProperty("channelCode")
|
|
|
- private String channelCode;
|
|
|
+ private String channelCode = "";
|
|
|
|
|
|
@JsonProperty("carMobile")
|
|
|
private String carMobile;
|
|
|
|
|
|
@JsonProperty("appliIdentifyType")
|
|
|
- private String appliIdentifyType;
|
|
|
+ private String appliIdentifyType = "01";
|
|
|
|
|
|
@JsonProperty("insuredIdentifyType")
|
|
|
- private String insuredIdentifyType;
|
|
|
+ private String insuredIdentifyType = "01";
|
|
|
|
|
|
@JsonProperty("ownerIdentifyType")
|
|
|
- private String ownerIdentifyType;
|
|
|
+ private String ownerIdentifyType = "01";
|
|
|
|
|
|
@JsonProperty("insured_individualBusiness")
|
|
|
- private String insuredIndividualBusiness;
|
|
|
+ private String insuredIndividualBusiness = "";
|
|
|
|
|
|
@JsonProperty("autonuclearFlag")
|
|
|
- private String autoNuclearFlag;
|
|
|
+ private String autoNuclearFlag = "0";
|
|
|
|
|
|
@JsonProperty("isSubmitProduct")
|
|
|
- private String isSubmitProduct;
|
|
|
+ private String isSubmitProduct = "0";
|
|
|
|
|
|
@JsonProperty("recommendName")
|
|
|
- private String recommendName;
|
|
|
+ private String recommendName = "";
|
|
|
|
|
|
@JsonProperty("checkDifferentYear")
|
|
|
- private String checkDifferentYear;
|
|
|
+ private String checkDifferentYear = "0";
|
|
|
|
|
|
@JsonProperty("carvotype")
|
|
|
- private String carVoType;
|
|
|
+ private String carVoType = "1";
|
|
|
|
|
|
@JsonProperty("insVotype")
|
|
|
- private String insVoType;
|
|
|
+ private String insVoType = "1";
|
|
|
|
|
|
@JsonProperty("areaSwitch")
|
|
|
- private String areaSwitch;
|
|
|
+ private String areaSwitch = "1";
|
|
|
|
|
|
@JsonProperty("bicategory")
|
|
|
- private String biCategory;
|
|
|
+ private String biCategory = "";
|
|
|
|
|
|
@JsonProperty("cicategory")
|
|
|
private String ciCategory;
|
|
|
|
|
|
@JsonProperty("banliren")
|
|
|
- private String transactors;
|
|
|
+ private String transactors = "";
|
|
|
|
|
|
@JsonProperty("SHMergeSwitch")
|
|
|
- private String SHMergeSwitch;
|
|
|
+ private String SHMergeSwitch = "";
|
|
|
|
|
|
- @JsonProperty("UnifiedMergeSwitch")
|
|
|
- private String unifiedMergeSwitch;
|
|
|
+// @JsonProperty("UnifiedMergeSwitch")
|
|
|
+// private String unifiedMergeSwitch;
|
|
|
|
|
|
@JsonProperty("stagFlag")
|
|
|
- private String stagFlag;
|
|
|
+ private String stagFlag = "1";
|
|
|
|
|
|
@JsonProperty("tmppaperscrestartdate")
|
|
|
private String tmpPaperscreStartDate;
|
|
|
@@ -138,25 +318,25 @@ public class HtCrawlerSubmitRequest implements Serializable {
|
|
|
private String papersValidDate;
|
|
|
|
|
|
@JsonProperty("risklevel")
|
|
|
- private String riskLevel;
|
|
|
+ private String riskLevel = "4";
|
|
|
|
|
|
@JsonProperty("registration")
|
|
|
- private String registration;
|
|
|
+ private String registration = "CHN";
|
|
|
|
|
|
@JsonProperty("monitorrecord")
|
|
|
- private String monitorRecord;
|
|
|
+ private String monitorRecord = "";
|
|
|
|
|
|
@JsonProperty("riskwarninfo")
|
|
|
- private String riskWarnInfo;
|
|
|
+ private String riskWarnInfo = "";
|
|
|
|
|
|
@JsonProperty("tel")
|
|
|
private String tel;
|
|
|
|
|
|
@JsonProperty("email")
|
|
|
- private String email;
|
|
|
+ private String email = "";
|
|
|
|
|
|
@JsonProperty("community")
|
|
|
- private String community;
|
|
|
+ private String community = "";
|
|
|
|
|
|
@JsonProperty("province")
|
|
|
private String province;
|
|
|
@@ -171,64 +351,64 @@ public class HtCrawlerSubmitRequest implements Serializable {
|
|
|
private String street;
|
|
|
|
|
|
@JsonProperty("sales_position2")
|
|
|
- private String salesPosition2;
|
|
|
+ private String salesPosition2 = "";
|
|
|
|
|
|
@JsonProperty("position_value2")
|
|
|
- private String positionValue2;
|
|
|
+ private String positionValue2 = "";
|
|
|
|
|
|
@JsonProperty("position_name2")
|
|
|
- private String positionName2;
|
|
|
+ private String positionName2 = "";
|
|
|
|
|
|
@JsonProperty("sales_position")
|
|
|
- private String salesPosition;
|
|
|
+ private String salesPosition = "";
|
|
|
|
|
|
@JsonProperty("position")
|
|
|
- private String position;
|
|
|
+ private String position = "";
|
|
|
|
|
|
@JsonProperty("position_name")
|
|
|
- private String positionName;
|
|
|
+ private String positionName = "";
|
|
|
|
|
|
@JsonProperty("customerno")
|
|
|
- private String customerNo;
|
|
|
+ private String customerNo = "";
|
|
|
|
|
|
@JsonProperty("workname")
|
|
|
- private String workName;
|
|
|
+ private String workName = "";
|
|
|
|
|
|
@JsonProperty("workphone")
|
|
|
- private String workPhone;
|
|
|
+ private String workPhone = "";
|
|
|
|
|
|
@JsonProperty("yearmoney")
|
|
|
- private String yearMoney;
|
|
|
+ private String yearMoney = "0";
|
|
|
|
|
|
@JsonProperty("workaddress")
|
|
|
- private String workAddress;
|
|
|
+ private String workAddress = "";
|
|
|
|
|
|
@JsonProperty("otherphone")
|
|
|
- private String otherPhone;
|
|
|
+ private String otherPhone = "";
|
|
|
|
|
|
@JsonProperty("otheraddress")
|
|
|
- private String otherAddress;
|
|
|
+ private String otherAddress = "";
|
|
|
|
|
|
@JsonProperty("ccontrollerName")
|
|
|
- private String ccontrollerName;
|
|
|
+ private String ccontrollerName = "";
|
|
|
|
|
|
@JsonProperty("ccontrollerIdentifyType")
|
|
|
- private String ccontrollerIdentifyType;
|
|
|
+ private String ccontrollerIdentifyType = "";
|
|
|
|
|
|
@JsonProperty("ccontrollerIdentifyCode")
|
|
|
- private String ccontrollerIdentifyCode;
|
|
|
+ private String ccontrollerIdentifyCode = "";
|
|
|
|
|
|
@JsonProperty("ccontrollerStartPeriod")
|
|
|
- private String ccontrollerStartPeriod;
|
|
|
+ private String ccontrollerStartPeriod = "";
|
|
|
|
|
|
@JsonProperty("ccontrollerValidityPeriod")
|
|
|
- private String ccontrollerValidityPeriod;
|
|
|
+ private String ccontrollerValidityPeriod = "";
|
|
|
|
|
|
@JsonProperty("beibaoren_id")
|
|
|
private String beibaorenId;
|
|
|
|
|
|
@JsonProperty("isSZteamcarReportFlag")
|
|
|
- private String isSZteamcarReportFlag;
|
|
|
+ private String isSZteamcarReportFlag = "";
|
|
|
|
|
|
@JsonProperty("iscarowenerflag")
|
|
|
private String isCarOwenerFlag;
|
|
|
@@ -246,25 +426,25 @@ public class HtCrawlerSubmitRequest implements Serializable {
|
|
|
private String insuredPapersDate;
|
|
|
|
|
|
@JsonProperty("insuredrisklevel")
|
|
|
- private String insuredRiskLevel;
|
|
|
+ private String insuredRiskLevel = "";
|
|
|
|
|
|
@JsonProperty("registration1")
|
|
|
- private String registration1;
|
|
|
+ private String registration1 = "CHN";
|
|
|
|
|
|
@JsonProperty("monitorrecord1")
|
|
|
- private String monitorrecord1;
|
|
|
+ private String monitorrecord1 = "";
|
|
|
|
|
|
@JsonProperty("riskwarninfo1")
|
|
|
- private String riskWarnInfo1;
|
|
|
+ private String riskWarnInfo1 = "";
|
|
|
|
|
|
@JsonProperty("_tel")
|
|
|
private String _tel;
|
|
|
|
|
|
@JsonProperty("b_email")
|
|
|
- private String bEmail;
|
|
|
+ private String bEmail = "";
|
|
|
|
|
|
@JsonProperty("_community")
|
|
|
- private String _community;
|
|
|
+ private String _community = "";
|
|
|
|
|
|
@JsonProperty("_province")
|
|
|
private String _province;
|
|
|
@@ -279,82 +459,86 @@ public class HtCrawlerSubmitRequest implements Serializable {
|
|
|
private String _street;
|
|
|
|
|
|
@JsonProperty("sales_insuredposition2")
|
|
|
- private String salesInsuredPosition2;
|
|
|
+ private String salesInsuredPosition2 = "";
|
|
|
|
|
|
@JsonProperty("insuredposition2")
|
|
|
- private String insuredPosition2;
|
|
|
+ private String insuredPosition2 = "";
|
|
|
|
|
|
@JsonProperty("insuredposition_name2")
|
|
|
- private String insuredPositionName2;
|
|
|
+ private String insuredPositionName2 = "";
|
|
|
|
|
|
@JsonProperty("sales_insuredposition")
|
|
|
- private String salesInsuredPosition;
|
|
|
+ private String salesInsuredPosition = "";
|
|
|
|
|
|
@JsonProperty("insuredposition")
|
|
|
- private String insuredPosition;
|
|
|
+ private String insuredPosition = "";
|
|
|
|
|
|
@JsonProperty("insuredposition_name")
|
|
|
- private String insuredPositionName;
|
|
|
+ private String insuredPositionName = "";
|
|
|
|
|
|
@JsonProperty("bbr_beneficiaryName")
|
|
|
- private String bbrBeneficiaryName;
|
|
|
+ private String bbrBeneficiaryName = "";
|
|
|
|
|
|
@JsonProperty("bbr_beneficiaryIdentifyType")
|
|
|
- private String bbrBeneficiaryIdentifyType;
|
|
|
+ private String bbrBeneficiaryIdentifyType = "";
|
|
|
|
|
|
@JsonProperty("bbr_beneficiaryIdentifyCode")
|
|
|
- private String bbrBeneficiaryIdentifyCode;
|
|
|
+ private String bbrBeneficiaryIdentifyCode = "";
|
|
|
|
|
|
@JsonProperty("bbr_IdentifyStartPeriod")
|
|
|
- private String bbrIdentifyStartPeriod;
|
|
|
+ private String bbrIdentifyStartPeriod = "";
|
|
|
|
|
|
@JsonProperty("bbr_IdentifyValidityPeriod")
|
|
|
- private String bbrIdentifyValidityPeriod;
|
|
|
+ private String bbrIdentifyValidityPeriod = "";
|
|
|
|
|
|
@JsonProperty("bbr_beneficiaryAddress")
|
|
|
- private String bbrBeneficiaryAddress;
|
|
|
+ private String bbrBeneficiaryAddress = "";
|
|
|
|
|
|
@JsonProperty("bbr_beneficiarymethod")
|
|
|
- private String bbrBeneficiaryMethod;
|
|
|
+ private String bbrBeneficiaryMethod = "";
|
|
|
|
|
|
@JsonProperty("bbr_beneficiaryaccountfor")
|
|
|
- private String bbrBeneficiaryAccountfor;
|
|
|
+ private String bbrBeneficiaryAccountfor = "";
|
|
|
|
|
|
@JsonProperty("bcontrollerName")
|
|
|
- private String bcontrollerName;
|
|
|
+ private String bcontrollerName = "";
|
|
|
|
|
|
@JsonProperty("bcontrollerIdentifyType")
|
|
|
- private String bcontrollerIdentifyType;
|
|
|
+ private String bcontrollerIdentifyType = "";
|
|
|
|
|
|
@JsonProperty("bcontrollerIdentifyCode")
|
|
|
- private String bcontrollerIdentifyCode;
|
|
|
+ private String bcontrollerIdentifyCode = "";
|
|
|
|
|
|
@JsonProperty("bcontrollerStartPeriod")
|
|
|
- private String bcontrollerStartPeriod;
|
|
|
+ private String bcontrollerStartPeriod = "";
|
|
|
|
|
|
@JsonProperty("bcontrollerValidityPeriod")
|
|
|
- private String bcontrollerValidityPeriod;
|
|
|
+ private String bcontrollerValidityPeriod = "";
|
|
|
|
|
|
@JsonProperty("bcustomerno")
|
|
|
- private String bcustomerNo;
|
|
|
+ private String bcustomerNo = "";
|
|
|
|
|
|
@JsonProperty("bworkname")
|
|
|
- private String bworkName;
|
|
|
+ private String bworkName = "";
|
|
|
|
|
|
@JsonProperty("bworkphone")
|
|
|
- private String bworkphone;
|
|
|
+ private String bworkphone = "";
|
|
|
|
|
|
@JsonProperty("byearmoney")
|
|
|
- private String byearmoney;
|
|
|
+ private String byearmoney = "";
|
|
|
|
|
|
@JsonProperty("bworkaddress")
|
|
|
- private String bworkAddress;
|
|
|
+ private String bworkAddress = "";
|
|
|
|
|
|
@JsonProperty("botherphone")
|
|
|
- private String botherPhone;
|
|
|
+ private String botherPhone = "";
|
|
|
|
|
|
@JsonProperty("botheraddress")
|
|
|
- private String botherAddress;
|
|
|
+ private String botherAddress = "";
|
|
|
+
|
|
|
+ //#投保人与被保人的关系 本人01 其他 ("t_airelation", "01" ),
|
|
|
+ @JsonProperty("t_airelation")
|
|
|
+ private String tAirRelation = "";
|
|
|
|
|
|
@JsonProperty("i_iscarowner")
|
|
|
private String iisCarOwner;
|
|
|
@@ -363,55 +547,55 @@ public class HtCrawlerSubmitRequest implements Serializable {
|
|
|
private String appliBirthDay;
|
|
|
|
|
|
@JsonProperty("transactor1_nam")
|
|
|
- private String transactorNam;
|
|
|
+ private String transactorNam = "";
|
|
|
|
|
|
@JsonProperty("transactoridentifytype1")
|
|
|
- private String transactorIdentifyType1;
|
|
|
+ private String transactorIdentifyType1 = "01";
|
|
|
|
|
|
@JsonProperty("transtartdate1")
|
|
|
- private String transtartdate1;
|
|
|
+ private String transtartdate1 = "";
|
|
|
|
|
|
@JsonProperty("transtartsactorexpirydate1")
|
|
|
- private String transtartsactorexpirydate1;
|
|
|
+ private String transtartsactorexpirydate1 = "";
|
|
|
|
|
|
@JsonProperty("tranvaliddate1")
|
|
|
- private String tranValidDate1;
|
|
|
+ private String tranValidDate1 = "";
|
|
|
|
|
|
@JsonProperty("transactorexpirydate1")
|
|
|
- private String transactorExpiryDate1;
|
|
|
+ private String transactorExpiryDate1 = "";
|
|
|
|
|
|
@JsonProperty("transactoridentifycode1")
|
|
|
- private String transactorIdentifyCode1;
|
|
|
+ private String transactorIdentifyCode1 = "";
|
|
|
|
|
|
@JsonProperty("transactormobile1")
|
|
|
- private String transactorMobile1;
|
|
|
+ private String transactorMobile1 = "";
|
|
|
|
|
|
@JsonProperty("car_owner_type")
|
|
|
- private String carOwnerType;
|
|
|
+ private String carOwnerType = "1";
|
|
|
|
|
|
@JsonProperty("car_owner_gender")
|
|
|
private String carOwnerGender;
|
|
|
|
|
|
@JsonProperty("owner_ecn")
|
|
|
- private String ownerEcn;
|
|
|
+ private String ownerEcn = "";
|
|
|
|
|
|
@JsonProperty("owner_risk_level")
|
|
|
- private String ownerRiskLevel;
|
|
|
+ private String ownerRiskLevel = "";
|
|
|
|
|
|
@JsonProperty("owner_address")
|
|
|
private String ownerAddress;
|
|
|
|
|
|
@JsonProperty("owner_linker_name")
|
|
|
- private String ownerLinkerName;
|
|
|
+ private String ownerLinkerName = "";
|
|
|
|
|
|
@JsonProperty("owner_linker_relation")
|
|
|
- private String ownerLinkerRelation;
|
|
|
+ private String ownerLinkerRelation = "";
|
|
|
|
|
|
@JsonProperty("owner_linker_nation")
|
|
|
- private String ownerLinkerNation;
|
|
|
+ private String ownerLinkerNation = "";
|
|
|
|
|
|
@JsonProperty("owner_blr")
|
|
|
- private String ownerBlr;
|
|
|
+ private String ownerBlr = "";
|
|
|
|
|
|
@JsonProperty("car_owner_name")
|
|
|
private String carOwnerName;
|
|
|
@@ -429,22 +613,22 @@ public class HtCrawlerSubmitRequest implements Serializable {
|
|
|
private String carOwnerAge;
|
|
|
|
|
|
@JsonProperty("car_owner_enterprisename")
|
|
|
- private String carOwnerEnterprisename;
|
|
|
+ private String carOwnerEnterprisename = "";
|
|
|
|
|
|
@JsonProperty("car_owner_secrecyunitflag")
|
|
|
- private String carOwnerSecrecyunitFlag;
|
|
|
+ private String carOwnerSecrecyunitFlag = "";
|
|
|
|
|
|
@JsonProperty("car_owner_samid")
|
|
|
- private String carOwnerSamid;
|
|
|
+ private String carOwnerSamid = "";
|
|
|
|
|
|
@JsonProperty("insVocode")
|
|
|
private String insVocode;
|
|
|
|
|
|
@JsonProperty("ins_type")
|
|
|
- private String insType;
|
|
|
+ private String insType = "1";
|
|
|
|
|
|
@JsonProperty("certi_type")
|
|
|
- private String certiType;
|
|
|
+ private String certiType = "01";
|
|
|
|
|
|
@JsonProperty("certi_code")
|
|
|
private String certiCode;
|
|
|
@@ -471,94 +655,94 @@ public class HtCrawlerSubmitRequest implements Serializable {
|
|
|
private String tAge;
|
|
|
|
|
|
@JsonProperty("risk_level")
|
|
|
- private String risk_level;
|
|
|
+ private String risk_level = "";
|
|
|
|
|
|
@JsonProperty("p_registration")
|
|
|
- private String pRegistration;
|
|
|
+ private String pRegistration = "CHN";
|
|
|
|
|
|
@JsonProperty("appliUnitproperties")
|
|
|
- private String appliUnitProperties;
|
|
|
+ private String appliUnitProperties = "";
|
|
|
|
|
|
@JsonProperty("appliHolderandcomrelation")
|
|
|
- private String appliHoldeRandcomRelation;
|
|
|
+ private String appliHoldeRandcomRelation = "";
|
|
|
|
|
|
@JsonProperty("p_monitorrecord")
|
|
|
- private String pMonitorRecord;
|
|
|
+ private String pMonitorRecord = "";
|
|
|
|
|
|
@JsonProperty("p_riskwarninfo")
|
|
|
- private String pRiskWarnInfo;
|
|
|
+ private String pRiskWarnInfo = "";
|
|
|
|
|
|
@JsonProperty("smallEnterpriseFlagName")
|
|
|
- private String smallEnterpriseFlagName;
|
|
|
+ private String smallEnterpriseFlagName = "0";
|
|
|
|
|
|
@JsonProperty("enterpriseNatureName")
|
|
|
- private String enterPriseNatureName;
|
|
|
+ private String enterPriseNatureName = "0";
|
|
|
|
|
|
@JsonProperty("j_iscom")
|
|
|
- private String jIscom;
|
|
|
+ private String jIscom = "0";
|
|
|
|
|
|
@JsonProperty("j_swh")
|
|
|
- private String jSwh;
|
|
|
+ private String jSwh = "";
|
|
|
|
|
|
@JsonProperty("j_ecn")
|
|
|
- private String jEcn;
|
|
|
+ private String jEcn = "";
|
|
|
|
|
|
@JsonProperty("j_insured_name")
|
|
|
private String jInsuredName;
|
|
|
|
|
|
@JsonProperty("j_enter_no")
|
|
|
- private String j_enter_no;
|
|
|
+ private String j_enter_no = "";
|
|
|
|
|
|
@JsonProperty("TRANSACTOR_NAME")
|
|
|
- private String transactorName;
|
|
|
+ private String transactorName = "";
|
|
|
|
|
|
@JsonProperty("transactoridentifytype")
|
|
|
- private String transactorIdentifyType;
|
|
|
+ private String transactorIdentifyType = "";
|
|
|
|
|
|
@JsonProperty("transactoridentifycode")
|
|
|
- private String transactorIdentifyCode;
|
|
|
+ private String transactorIdentifyCode = "";
|
|
|
|
|
|
@JsonProperty("transtartdate")
|
|
|
- private String transtartdate;
|
|
|
+ private String transtartdate = "";
|
|
|
|
|
|
@JsonProperty("transtartsactorexpirydate")
|
|
|
- private String transtartsactorexpirydate;
|
|
|
+ private String transtartsactorexpirydate = "";
|
|
|
|
|
|
@JsonProperty("tranvaliddate")
|
|
|
- private String tranvaliddate;
|
|
|
+ private String tranvaliddate = "";
|
|
|
|
|
|
@JsonProperty("transactorexpirydate")
|
|
|
- private String transactorexpirydate;
|
|
|
+ private String transactorexpirydate = "";
|
|
|
|
|
|
@JsonProperty("transactormobile")
|
|
|
- private String transactormobile;
|
|
|
+ private String transactormobile = "";
|
|
|
|
|
|
@JsonProperty("c_risk_level")
|
|
|
- private String c_risk_level;
|
|
|
+ private String c_risk_level = "";
|
|
|
|
|
|
@JsonProperty("c_comregistration")
|
|
|
- private String c_comregistration;
|
|
|
+ private String c_comregistration = "";
|
|
|
|
|
|
@JsonProperty("unitUnitproperties")
|
|
|
- private String unitUnitproperties;
|
|
|
+ private String unitUnitproperties = "";
|
|
|
|
|
|
@JsonProperty("unitHolderandcomrelation")
|
|
|
- private String unitHolderandcomrelation;
|
|
|
+ private String unitHolderandcomrelation = "";
|
|
|
|
|
|
@JsonProperty("c_commonitorrecord")
|
|
|
- private String c_commonitorrecord;
|
|
|
+ private String c_commonitorrecord = "";
|
|
|
|
|
|
@JsonProperty("c_comriskwarninfo")
|
|
|
- private String c_comriskwarninfo;
|
|
|
+ private String c_comriskwarninfo = "";
|
|
|
|
|
|
@JsonProperty("t_tel")
|
|
|
private String t_tel;
|
|
|
|
|
|
@JsonProperty("t_email")
|
|
|
- private String t_email;
|
|
|
+ private String t_email = "";
|
|
|
|
|
|
@JsonProperty("t_community")
|
|
|
- private String t_community;
|
|
|
+ private String t_community = "";
|
|
|
|
|
|
@JsonProperty("t_province")
|
|
|
private String t_province;
|
|
|
@@ -567,306 +751,313 @@ public class HtCrawlerSubmitRequest implements Serializable {
|
|
|
private String t_city;
|
|
|
|
|
|
@JsonProperty("tcity")
|
|
|
- private String tcity;
|
|
|
+ private String tcity = "";
|
|
|
|
|
|
@JsonProperty("t_district")
|
|
|
private String t_district;
|
|
|
|
|
|
@JsonProperty("tdistrict")
|
|
|
- private String tdistrict;
|
|
|
+ private String tdistrict = "";
|
|
|
|
|
|
@JsonProperty("t_street")
|
|
|
private String t_street;
|
|
|
|
|
|
@JsonProperty("sales_tposition2")
|
|
|
- private String sales_tposition2;
|
|
|
+ private String sales_tposition2 = "";
|
|
|
|
|
|
@JsonProperty("tposition2")
|
|
|
- private String tposition2;
|
|
|
+ private String tposition2 = "";
|
|
|
|
|
|
@JsonProperty("tposition_name2")
|
|
|
- private String tposition_name2;
|
|
|
+ private String tposition_name2 = "";
|
|
|
|
|
|
@JsonProperty("sales_tposition")
|
|
|
- private String sales_tposition;
|
|
|
+ private String sales_tposition = "";
|
|
|
|
|
|
@JsonProperty("tposition")
|
|
|
- private String tposition;
|
|
|
+ private String tposition = "";
|
|
|
|
|
|
@JsonProperty("tposition_name")
|
|
|
- private String tposition_name;
|
|
|
+ private String tposition_name = "";
|
|
|
|
|
|
@JsonProperty("tcustomerno")
|
|
|
- private String tcustomerno;
|
|
|
+ private String tcustomerno = "";
|
|
|
|
|
|
@JsonProperty("tworkrange")
|
|
|
- private String tworkrange;
|
|
|
+ private String tworkrange = "";
|
|
|
|
|
|
@JsonProperty("tcompanymoney")
|
|
|
- private String tcompanymoney;
|
|
|
+ private String tcompanymoney = "";
|
|
|
|
|
|
@JsonProperty("tmoneytype")
|
|
|
- private String tmoneytype;
|
|
|
+ private String tmoneytype = "";
|
|
|
|
|
|
@JsonProperty("tcompanyname")
|
|
|
- private String tcompanyname;
|
|
|
+ private String tcompanyname = "";
|
|
|
|
|
|
@JsonProperty("tcompanynumber")
|
|
|
- private String tcompanynumber;
|
|
|
+ private String tcompanynumber = "";
|
|
|
|
|
|
@JsonProperty("tcompanylimitdate")
|
|
|
- private String tcompanylimitdate;
|
|
|
+ private String tcompanylimitdate = "";
|
|
|
|
|
|
@JsonProperty("tfzname")
|
|
|
- private String tfzname;
|
|
|
+ private String tfzname = "";
|
|
|
|
|
|
@JsonProperty("tfztype")
|
|
|
- private String tfztype;
|
|
|
+ private String tfztype = "";
|
|
|
|
|
|
@JsonProperty("tfzstartdate")
|
|
|
- private String tfzstartdate;
|
|
|
+ private String tfzstartdate = "";
|
|
|
|
|
|
@JsonProperty("tfzlimitdate")
|
|
|
- private String tfzlimitdate;
|
|
|
+ private String tfzlimitdate = "";
|
|
|
|
|
|
@JsonProperty("tfzcode")
|
|
|
- private String tfzcode;
|
|
|
+ private String tfzcode = "";
|
|
|
|
|
|
@JsonProperty("tbr_beneficiaryName")
|
|
|
- private String tbr_beneficiaryName;
|
|
|
+ private String tbr_beneficiaryName = "";
|
|
|
|
|
|
@JsonProperty("tbr_beneficiaryIdentifyType")
|
|
|
- private String tbr_beneficiaryIdentifyType;
|
|
|
+ private String tbr_beneficiaryIdentifyType = "";
|
|
|
|
|
|
@JsonProperty("tbr_beneficiaryIdentifyCode")
|
|
|
- private String tbr_beneficiaryIdentifyCode;
|
|
|
+ private String tbr_beneficiaryIdentifyCode = "";
|
|
|
|
|
|
@JsonProperty("tbr_IdentifyStartPeriod")
|
|
|
- private String tbr_IdentifyStartPeriod;
|
|
|
+ private String tbr_IdentifyStartPeriod = "";
|
|
|
|
|
|
@JsonProperty("tbr_IdentifyValidityPeriod")
|
|
|
- private String tbr_IdentifyValidityPeriod;
|
|
|
+ private String tbr_IdentifyValidityPeriod = "";
|
|
|
|
|
|
@JsonProperty("tbr_beneficiaryAddress")
|
|
|
- private String tbr_beneficiaryAddress;
|
|
|
+ private String tbr_beneficiaryAddress = "";
|
|
|
|
|
|
@JsonProperty("tbr_beneficiarymethod")
|
|
|
- private String tbr_beneficiarymethod;
|
|
|
+ private String tbr_beneficiarymethod = "";
|
|
|
|
|
|
@JsonProperty("tbr_beneficiaryaccountfor")
|
|
|
- private String tbr_beneficiaryaccountfor;
|
|
|
+ private String tbr_beneficiaryaccountfor = "";
|
|
|
|
|
|
@JsonProperty("tcontrollerName")
|
|
|
- private String tcontrollerName;
|
|
|
+ private String tcontrollerName = "";
|
|
|
|
|
|
@JsonProperty("tcontrollerIdentifyType")
|
|
|
- private String tcontrollerIdentifyType;
|
|
|
+ private String tcontrollerIdentifyType = "";
|
|
|
|
|
|
@JsonProperty("tcontrollerIdentifyCode")
|
|
|
- private String tcontrollerIdentifyCode;
|
|
|
+ private String tcontrollerIdentifyCode = "";
|
|
|
|
|
|
@JsonProperty("tcontrollerStartPeriod")
|
|
|
- private String tcontrollerStartPeriod;
|
|
|
+ private String tcontrollerStartPeriod = "";
|
|
|
|
|
|
@JsonProperty("tcontrollerValidityPeriod")
|
|
|
- private String tcontrollerValidityPeriod;
|
|
|
+ private String tcontrollerValidityPeriod = "";
|
|
|
|
|
|
@JsonProperty("unitproperties")
|
|
|
- private String unitproperties;
|
|
|
+ private String unitproperties = "";
|
|
|
|
|
|
@JsonProperty("holderandcomrelation")
|
|
|
- private String holderandcomrelation;
|
|
|
-
|
|
|
- @JsonProperty("itemName")
|
|
|
- private String itemName;
|
|
|
-
|
|
|
- @JsonProperty("kindName")
|
|
|
- private String kindName;
|
|
|
-
|
|
|
- @JsonProperty("chargingPostKindCode")
|
|
|
- private String chargingPostKindCode;
|
|
|
-
|
|
|
- @JsonProperty("chargingPostItemNo")
|
|
|
- private String chargingPostItemNo;
|
|
|
-
|
|
|
- @JsonProperty("chargingPostType")
|
|
|
- private String chargingPostType;
|
|
|
-
|
|
|
- @JsonProperty("chargingPostCode")
|
|
|
- private String chargingPostCode;
|
|
|
-
|
|
|
- @JsonProperty("chargingPostDate")
|
|
|
- private String chargingPostDate;
|
|
|
-
|
|
|
- @JsonProperty("chargingPostYearLimit")
|
|
|
- private String chargingPostYearLimit;
|
|
|
-
|
|
|
- @JsonProperty("chargingPostAddress")
|
|
|
- private String chargingPostAddress;
|
|
|
+ private String holderandcomrelation = "";
|
|
|
+
|
|
|
+// @JsonProperty("itemName")
|
|
|
+// private String itemName;
|
|
|
+//
|
|
|
+// @JsonProperty("kindName")
|
|
|
+// private String kindName;
|
|
|
+//
|
|
|
+// @JsonProperty("chargingPostKindCode")
|
|
|
+// private String chargingPostKindCode;
|
|
|
+//
|
|
|
+// @JsonProperty("chargingPostItemNo")
|
|
|
+// private String chargingPostItemNo;
|
|
|
+//
|
|
|
+// @JsonProperty("chargingPostType")
|
|
|
+// private String chargingPostType;
|
|
|
+//
|
|
|
+// @JsonProperty("chargingPostCode")
|
|
|
+// private String chargingPostCode;
|
|
|
+//
|
|
|
+// @JsonProperty("chargingPostDate")
|
|
|
+// private String chargingPostDate;
|
|
|
+//
|
|
|
+// @JsonProperty("chargingPostYearLimit")
|
|
|
+// private String chargingPostYearLimit;
|
|
|
+//
|
|
|
+// @JsonProperty("chargingPostAddress")
|
|
|
+// private String chargingPostAddress;
|
|
|
|
|
|
@JsonProperty("polcyNo")
|
|
|
- private String polcyNo;
|
|
|
-
|
|
|
- @JsonProperty("car_check_reason")
|
|
|
- private String car_check_reason;
|
|
|
-
|
|
|
- @JsonProperty("RENEWAL_FLAG")
|
|
|
- private String RENEWAL_FLAG;
|
|
|
-
|
|
|
- @JsonProperty("car_checker")
|
|
|
- private String car_checker;
|
|
|
-
|
|
|
- @JsonProperty("car_check_time")
|
|
|
- private String car_check_time;
|
|
|
-
|
|
|
- @JsonProperty("car_check_record")
|
|
|
- private String car_check_record;
|
|
|
-
|
|
|
- @JsonProperty("car_situation")
|
|
|
- private String car_situation;
|
|
|
+ private String polcyNo = "";
|
|
|
+
|
|
|
+// @JsonProperty("car_check_reason")
|
|
|
+// private String car_check_reason;
|
|
|
+//
|
|
|
+// @JsonProperty("RENEWAL_FLAG")
|
|
|
+// private String RENEWAL_FLAG;
|
|
|
+//
|
|
|
+// @JsonProperty("car_checker")
|
|
|
+// private String car_checker;
|
|
|
+//
|
|
|
+// @JsonProperty("car_check_time")
|
|
|
+// private String car_check_time;
|
|
|
+//
|
|
|
+// @JsonProperty("car_check_record")
|
|
|
+// private String car_check_record;
|
|
|
+//
|
|
|
+// @JsonProperty("car_situation")
|
|
|
+// private String car_situation;
|
|
|
+
|
|
|
+ @JsonProperty("optionsRadios1")
|
|
|
+ private String optionsRadios1 = "2";
|
|
|
|
|
|
@JsonProperty("isBusiness_to_not")
|
|
|
- private String isBusiness_to_not;
|
|
|
+ private String isBusiness_to_not = "0";
|
|
|
|
|
|
@JsonProperty("optionsRadios3")
|
|
|
- private String optionsRadios3;
|
|
|
+ private String optionsRadios3 = "0";
|
|
|
|
|
|
@JsonProperty("SECONDHAND_CAR_FLAG")
|
|
|
- private String SECONDHAND_CAR_FLAG;
|
|
|
+ private String SECONDHAND_CAR_FLAG = "0";
|
|
|
|
|
|
@JsonProperty("SECONDHAND_CAR_PRICE")
|
|
|
- private String SECONDHAND_CAR_PRICE;
|
|
|
+ private String SECONDHAND_CAR_PRICE = "";
|
|
|
|
|
|
@JsonProperty("RESCUE_CARD_TYPE")
|
|
|
- private String RESCUE_CARD_TYPE;
|
|
|
+ private String RESCUE_CARD_TYPE = "OEC";
|
|
|
|
|
|
@JsonProperty("LOAN_STATUS")
|
|
|
- private String LOAN_STATUS;
|
|
|
+ private String LOAN_STATUS = "0";
|
|
|
+
|
|
|
+ @JsonProperty("RELATION_NO_BI")
|
|
|
+ private String RELATION_NO_BI = "";
|
|
|
|
|
|
@JsonProperty("fixed_parkiing")
|
|
|
- private String fixed_parkiing;
|
|
|
+ private String fixed_parkiing = "0";
|
|
|
|
|
|
@JsonProperty("RESCUE_CARD")
|
|
|
- private String RESCUE_CARD;
|
|
|
+ private String RESCUE_CARD = "TYPE0006";
|
|
|
|
|
|
@JsonProperty("AGRICULTURE_RELATED")
|
|
|
- private String AGRICULTURE_RELATED;
|
|
|
+ private String AGRICULTURE_RELATED = "00";
|
|
|
|
|
|
@JsonProperty("PAY_MODE")
|
|
|
- private String PAY_MODE;
|
|
|
+ private String PAY_MODE = "2";
|
|
|
|
|
|
@JsonProperty("AREA_CODE")
|
|
|
- private String AREA_CODE;
|
|
|
+ private String AREA_CODE = "";
|
|
|
|
|
|
@JsonProperty("REGISTER_AREA")
|
|
|
- private String REGISTER_AREA;
|
|
|
+ private String REGISTER_AREA = "";
|
|
|
|
|
|
@JsonProperty("ARGUESOLUTION")
|
|
|
- private String ARGUESOLUTION;
|
|
|
+ private String ARGUESOLUTION = "1";
|
|
|
|
|
|
@JsonProperty("ARBITBOARD_NAME")
|
|
|
- private String ARBITBOARD_NAME;
|
|
|
+ private String ARBITBOARD_NAME = "";
|
|
|
|
|
|
@JsonProperty("firstbeneengaged")
|
|
|
- private String firstbeneengaged;
|
|
|
+ private String firstbeneengaged = "0";
|
|
|
|
|
|
@JsonProperty("t_iselec_comcode")
|
|
|
- private String t_iselec_comcode;
|
|
|
+ private String t_iselec_comcode = "";
|
|
|
|
|
|
@JsonProperty("t_iselec_comcode_hubei")
|
|
|
- private String t_iselec_comcode_hubei;
|
|
|
+ private String t_iselec_comcode_hubei = "1";
|
|
|
|
|
|
@JsonProperty("t_iselec_comcode_back")
|
|
|
- private String t_iselec_comcode_back;
|
|
|
+ private String t_iselec_comcode_back = "1";
|
|
|
|
|
|
@JsonProperty("proElecDisable")
|
|
|
- private String proElecDisable;
|
|
|
+ private String proElecDisable = "1";
|
|
|
|
|
|
@JsonProperty("PersonalElecInvoice")
|
|
|
- private String PersonalElecInvoice;
|
|
|
+ private String PersonalElecInvoice = "1";
|
|
|
|
|
|
@JsonProperty("proposaltype")
|
|
|
- private String proposaltype;
|
|
|
+ private String proposaltype = "1";
|
|
|
|
|
|
@JsonProperty("ownPrintElectronicCI")
|
|
|
- private String ownPrintElectronicCI;
|
|
|
+ private String ownPrintElectronicCI = "0";
|
|
|
|
|
|
@JsonProperty("ownPrintElectronicBI")
|
|
|
- private String ownPrintElectronicBI;
|
|
|
+ private String ownPrintElectronicBI = "0";
|
|
|
|
|
|
- @JsonProperty("printtype")
|
|
|
- private String printtype;
|
|
|
+// @JsonProperty("printtype")
|
|
|
+// private String printtype = "1";
|
|
|
|
|
|
@JsonProperty("printtype_ci")
|
|
|
- private String printtype_ci;
|
|
|
+ private String printtype_ci = "1";
|
|
|
|
|
|
@JsonProperty("auto_uw")
|
|
|
- private String auto_uw;
|
|
|
+ private String auto_uw = "1";
|
|
|
|
|
|
@JsonProperty("promotesaleplanid")
|
|
|
- private String promotesaleplanid;
|
|
|
+ private String promotesaleplanid = "";
|
|
|
|
|
|
@JsonProperty("APPROVER_COMMENTS")
|
|
|
- private String APPROVER_COMMENTS;
|
|
|
+ private String APPROVER_COMMENTS = "";
|
|
|
|
|
|
@JsonProperty("remark")
|
|
|
- private String remark;
|
|
|
+ private String remark = "";
|
|
|
|
|
|
@JsonProperty("visaType")
|
|
|
- private String visaType;
|
|
|
+ private String visaType = "026";
|
|
|
|
|
|
@JsonProperty("vat_taxno")
|
|
|
- private String vat_taxno;
|
|
|
+ private String vat_taxno = "";
|
|
|
|
|
|
@JsonProperty("vat_account")
|
|
|
- private String vat_account;
|
|
|
+ private String vat_account = "";
|
|
|
|
|
|
@JsonProperty("vat_address")
|
|
|
- private String vat_address;
|
|
|
+ private String vat_address = "";
|
|
|
|
|
|
@JsonProperty("vat_telephon")
|
|
|
- private String vat_telephon;
|
|
|
+ private String vat_telephon = "";
|
|
|
|
|
|
@JsonProperty("vat_bank")
|
|
|
- private String vat_bank;
|
|
|
+ private String vat_bank = "";
|
|
|
|
|
|
@JsonProperty("vat_bankname")
|
|
|
- private String vat_bankname;
|
|
|
+ private String vat_bankname = "";
|
|
|
|
|
|
@JsonProperty("vat_bankcode")
|
|
|
- private String vat_bankcode;
|
|
|
+ private String vat_bankcode = "";
|
|
|
|
|
|
@JsonProperty("vat_searchInput")
|
|
|
- private String vat_searchInput;
|
|
|
+ private String vat_searchInput = "";
|
|
|
|
|
|
@JsonProperty("codecode")
|
|
|
- private String codecode;
|
|
|
+ private String codecode = "";
|
|
|
|
|
|
@JsonProperty("codecname_name")
|
|
|
- private String codecname_name;
|
|
|
+ private String codecname_name = "";
|
|
|
|
|
|
@JsonProperty("vat_searchInput_astant")
|
|
|
- private String vat_searchInput_astant;
|
|
|
+ private String vat_searchInput_astant = "";
|
|
|
|
|
|
+ @JsonProperty("clauses")
|
|
|
private List<ClauseDTO> clauses;
|
|
|
|
|
|
@JsonProperty("quotationNo")
|
|
|
private String quotationNo;
|
|
|
|
|
|
@JsonProperty("isNext")
|
|
|
- private String isNext;
|
|
|
+ private String isNext = "";
|
|
|
|
|
|
@JsonProperty("fullcomcode")
|
|
|
private String fullcomcode;
|
|
|
|
|
|
@JsonProperty("riskflag")
|
|
|
- private String riskflag;
|
|
|
+ private String riskflag = "";
|
|
|
|
|
|
@JsonProperty("qsn")
|
|
|
- private String qsn;
|
|
|
+ private String qsn = "";
|
|
|
|
|
|
@JsonProperty("answer")
|
|
|
- private String answer;
|
|
|
+ private String answer = "";
|
|
|
|
|
|
@Data
|
|
|
public static class ClauseDTO implements Serializable {
|