|
|
@@ -1,2352 +0,0 @@
|
|
|
-package com.jzg.quotation.guoren.crawler.utils;
|
|
|
-
|
|
|
-import com.fasterxml.jackson.databind.JsonNode;
|
|
|
-import com.fasterxml.jackson.databind.ObjectMapper;
|
|
|
-import com.fasterxml.jackson.databind.node.ObjectNode;
|
|
|
-
|
|
|
-import java.util.*;
|
|
|
-
|
|
|
-/**
|
|
|
- * JSON 深度对比工具(专门适配你两段保险保单JSON)
|
|
|
- * 输出:字段路径 + 原值 + 新值
|
|
|
- */
|
|
|
-public class JsonCompareUtil {
|
|
|
- private static final ObjectMapper OBJECT_MAPPER = new ObjectMapper();
|
|
|
-
|
|
|
- // 存储差异结果
|
|
|
- public static class JsonDiff {
|
|
|
- private final String path;
|
|
|
- private final Object oldValue;
|
|
|
- private final Object newValue;
|
|
|
-
|
|
|
- public JsonDiff(String path, Object oldValue, Object newValue) {
|
|
|
- this.path = path;
|
|
|
- this.oldValue = oldValue;
|
|
|
- this.newValue = newValue;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return "【路径】" + path +
|
|
|
- "\n【第一段值】" + oldValue +
|
|
|
- "\n【第二段值】" + newValue +
|
|
|
- "\n----------------------------------------";
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- public static List<JsonDiff> compareJson(JsonNode oldJson, JsonNode newJson) {
|
|
|
- List<JsonDiff> diffs = new ArrayList<>();
|
|
|
- compareNode("", oldJson, newJson, diffs);
|
|
|
- return diffs;
|
|
|
- }
|
|
|
-
|
|
|
- private static void compareNode(String path, JsonNode oldNode, JsonNode newNode, List<JsonDiff> diffs) {
|
|
|
- if (oldNode == null && newNode == null) return;
|
|
|
- if (oldNode == null) {
|
|
|
- diffs.add(new JsonDiff(path, "null", newNode));
|
|
|
- return;
|
|
|
- }
|
|
|
- if (newNode == null) {
|
|
|
- diffs.add(new JsonDiff(path, oldNode, "null"));
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- // 类型不同
|
|
|
- if (!oldNode.getNodeType().equals(newNode.getNodeType())) {
|
|
|
- diffs.add(new JsonDiff(path, oldNode, newNode));
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- // 对象类型
|
|
|
- if (oldNode.isObject()) {
|
|
|
- Set<String> allFields = new HashSet<>();
|
|
|
- oldNode.fieldNames().forEachRemaining(allFields::add);
|
|
|
- newNode.fieldNames().forEachRemaining(allFields::add);
|
|
|
-
|
|
|
- for (String field : allFields) {
|
|
|
- String currentPath = path.isBlank() ? field : path + "." + field;
|
|
|
- compareNode(currentPath, oldNode.get(field), newNode.get(field), diffs);
|
|
|
- }
|
|
|
- }
|
|
|
- // 数组类型(按索引对比)
|
|
|
- else if (oldNode.isArray()) {
|
|
|
- int maxLen = Math.max(oldNode.size(), newNode.size());
|
|
|
- for (int i = 0; i < maxLen; i++) {
|
|
|
- JsonNode o = i < oldNode.size() ? oldNode.get(i) : null;
|
|
|
- JsonNode n = i < newNode.size() ? newNode.get(i) : null;
|
|
|
- compareNode(path + "[" + i + "]", o, n, diffs);
|
|
|
- }
|
|
|
- }
|
|
|
- // 普通值
|
|
|
- else {
|
|
|
- String oldVal = oldNode.asText();
|
|
|
- String newVal = newNode.asText();
|
|
|
- if (!Objects.equals(oldVal, newVal)) {
|
|
|
- diffs.add(new JsonDiff(path, oldVal, newVal));
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- // ====================== 测试:直接对比你的两段JSON ======================
|
|
|
- public static void main(String[] args) throws Exception {
|
|
|
- // 把你的两段JSON粘贴在这里
|
|
|
- String json1 = "{\n" +
|
|
|
- " \"bc\": {\n" +
|
|
|
- " \"baseInfoInit\": 1,\n" +
|
|
|
- " \"riskCode\": \"0500\",\n" +
|
|
|
- " \"prpTmain\": {\n" +
|
|
|
- " \"agreementNo\": \"\",\n" +
|
|
|
- " \"cooprOutlets\": \"\",\n" +
|
|
|
- " \"commissionerNo\": \"\",\n" +
|
|
|
- " \"comName\": \"太原营业大区科政保营业部经代业务部\",\n" +
|
|
|
- " \"handler1Name\": \"陶娇\",\n" +
|
|
|
- " \"agentName\": \"\",\n" +
|
|
|
- " \"project\": \"\",\n" +
|
|
|
- " \"unitMaintenanceName\": \"科政保天勤代理\",\n" +
|
|
|
- " \"unitMaintenanceType1Name\": \"代理\",\n" +
|
|
|
- " \"unitMaintenanceType2Name\": \"专业代理\",\n" +
|
|
|
- " \"channeltypeoneName\": \"个客发展\",\n" +
|
|
|
- " \"channeltypetwoName\": \"经代\",\n" +
|
|
|
- " \"argueSolution\": \"1\",\n" +
|
|
|
- " \"arbitboardName\": \"\",\n" +
|
|
|
- " \"isExpressProtectionFlag\": \"JSB00\",\n" +
|
|
|
- " \"eProposalFlag\": \"1\",\n" +
|
|
|
- " \"businessNature\": \"0\",\n" +
|
|
|
- " \"lifeAgentName\": \"\",\n" +
|
|
|
- " \"lifeAgentCode\": \"\",\n" +
|
|
|
- " \"saleProfessionalNum\": \"\",\n" +
|
|
|
- " \"saleGentType\": \"\",\n" +
|
|
|
- " \"agentCanalCode\": \" \",\n" +
|
|
|
- " \"amlCode\": \"\",\n" +
|
|
|
- " \"comCode\": \"305002A0\",\n" +
|
|
|
- " \"noCarFlag\": 0,\n" +
|
|
|
- " \"agentCode\": \"\",\n" +
|
|
|
- " \"saleName\": \"\",\n" +
|
|
|
- " \"cooprOutletsName\": \"\",\n" +
|
|
|
- " \"templateNo\": \"\",\n" +
|
|
|
- " \"handler1Code\": \"S3000222\",\n" +
|
|
|
- " \"channeltypeone\": \"60\",\n" +
|
|
|
- " \"channeltypetwo\": \"0101\",\n" +
|
|
|
- " \"unitMaintenanceCode\": \"3050D022512317323\",\n" +
|
|
|
- " \"unitmainTenanceType1\": \"D\",\n" +
|
|
|
- " \"unitmainTenanceType2\": \"02\",\n" +
|
|
|
- " \"classIdentifier\": \"00\",\n" +
|
|
|
- " \"isStandard\": \"0\",\n" +
|
|
|
- " \"uwELRrel1\": \"0\",\n" +
|
|
|
- " \"uwELRrel2\": \"0\",\n" +
|
|
|
- " \"templateName\": \"\",\n" +
|
|
|
- " \"deGentType\": \"\",\n" +
|
|
|
- " \"serviceLabelName\": \"\",\n" +
|
|
|
- " \"uniteBusinessFlag\": 0,\n" +
|
|
|
- " \"carsonlyid\": \"17118\",\n" +
|
|
|
- " \"goodCodes\": [],\n" +
|
|
|
- " \"noCarPremium\": 0,\n" +
|
|
|
- " \"operateDate\": \"2026-05-13\",\n" +
|
|
|
- " \"business\": null,\n" +
|
|
|
- " \"operatorCode\": \"W3000399\",\n" +
|
|
|
- " \"signDate\": \"2026-05-13\",\n" +
|
|
|
- " \"loginComCode\": \"305002A0\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"prpTitemCar\": {\n" +
|
|
|
- " \"licenseNo\": \"晋A345G0\",\n" +
|
|
|
- " \"vinNo\": \"LHGCR1640E8037440\",\n" +
|
|
|
- " \"engineNo\": \"1237456\",\n" +
|
|
|
- " \"carIdentifyType\": \"01\",\n" +
|
|
|
- " \"rateCode\": \"20\",\n" +
|
|
|
- " \"loanVehicleFlag\": \"0\",\n" +
|
|
|
- " \"chgOwnerFlag\": \"0\",\n" +
|
|
|
- " \"ciChgOwnerFlag\": \"0\",\n" +
|
|
|
- " \"biChgOwnerFlag\": \"0\",\n" +
|
|
|
- " \"newDeviceFlag\": \"0\",\n" +
|
|
|
- " \"chargingpostFlag\": \"0\",\n" +
|
|
|
- " \"productType\": \"0101\",\n" +
|
|
|
- " \"ownerAreas\": \"山西省太原市清徐县\",\n" +
|
|
|
- " \"relationShip\": \"1\",\n" +
|
|
|
- " \"carCertificateDate\": \"\",\n" +
|
|
|
- " \"newCaRegistration\": \"1\",\n" +
|
|
|
- " \"ocr_invoice_flag\": \"0\",\n" +
|
|
|
- " \"idvalidStartDate\": \"2014-02-17\",\n" +
|
|
|
- " \"carOwnerNature\": \"0\",\n" +
|
|
|
- " \"birthday\": \"1962-07-08\",\n" +
|
|
|
- " \"idValidDate\": \"9999-12-31\",\n" +
|
|
|
- " \"carOwner\": \"韩云福\",\n" +
|
|
|
- " \"carOwnerIdentifyType\": \"01\",\n" +
|
|
|
- " \"carOwnerIdentifyNumber\": \"140121196207080534\",\n" +
|
|
|
- " \"sex\": \"1\",\n" +
|
|
|
- " \"carOwnerAgeW\": \"63\",\n" +
|
|
|
- " \"ownerAddress\": \"山西省清徐县清源镇六合村北大街34号\",\n" +
|
|
|
- " \"newEnergyFlag\": \"0\",\n" +
|
|
|
- " \"enrollDateValueStatus\": 1,\n" +
|
|
|
- " \"enrollDate\": \"2014-09-03\",\n" +
|
|
|
- " \"chgOwnerDate\": \"2014-09-03\",\n" +
|
|
|
- " \"useYears\": 11,\n" +
|
|
|
- " \"brandName\": \"雅阁HG7205AAC4轿车\",\n" +
|
|
|
- " \"carInsuredRelation\": \"1\",\n" +
|
|
|
- " \"useNatureCode\": \"8A\",\n" +
|
|
|
- " \"maincarKindCode\": \"A\",\n" +
|
|
|
- " \"carKindCode\": \"A0\",\n" +
|
|
|
- " \"licenseCategory\": \"K33\",\n" +
|
|
|
- " \"carTypeCode\": \"1\",\n" +
|
|
|
- " \"licenseKindCode\": \"02\",\n" +
|
|
|
- " \"countryNature\": \"B\",\n" +
|
|
|
- " \"compromisePrice\": \"29960.00\",\n" +
|
|
|
- " \"fuelType\": \"0\",\n" +
|
|
|
- " \"seatCount\": \"5\",\n" +
|
|
|
- " \"tonCount\": \"0.0\",\n" +
|
|
|
- " \"exhaustScale\": \"1.997\",\n" +
|
|
|
- " \"power\": \"114\",\n" +
|
|
|
- " \"completeKerbMass\": \"1495\",\n" +
|
|
|
- " \"colorCode\": \"03\",\n" +
|
|
|
- " \"pureElectricBatteryType\": \"11\",\n" +
|
|
|
- " \"speed\": null,\n" +
|
|
|
- " \"powertypecode\": \"D1\",\n" +
|
|
|
- " \"carCertificateType\": \"\",\n" +
|
|
|
- " \"restricFlag\": \"\",\n" +
|
|
|
- " \"carAreas\": \"山西省太原市清徐县\",\n" +
|
|
|
- " \"ownerProvinceName\": \"山西省\",\n" +
|
|
|
- " \"ownerCityName\": \"太原市\",\n" +
|
|
|
- " \"ownerPostName\": \"清徐县\",\n" +
|
|
|
- " \"postCode\": \"140100\",\n" +
|
|
|
- " \"identiFication\": 0,\n" +
|
|
|
- " \"carKindCodeDesc\": \"\",\n" +
|
|
|
- " \"licenseColorCode\": \"01\",\n" +
|
|
|
- " \"carOwnerRecogNition\": \"韩云福\",\n" +
|
|
|
- " \"vinNoRecogNition\": \"LHGCR1640E8037440\",\n" +
|
|
|
- " \"engineNoRecogNition\": \"1237456\",\n" +
|
|
|
- " \"licenseNoRecogNition\": \"晋A345G0\",\n" +
|
|
|
- " \"modelName\": \"雅阁HG7205AAC4轿车\",\n" +
|
|
|
- " \"modelNameRecogNition\": \"雅阁牌HG7205AAC4\",\n" +
|
|
|
- " \"enrollDateoRecogNition\": \"2014-09-03T00:00:00.000Z\",\n" +
|
|
|
- " \"chgOwnerDateRecogNition\": \"2014-09-03T00:00:00.000Z\",\n" +
|
|
|
- " \"useNatureCodeNitionNew\": \"非营运\",\n" +
|
|
|
- " \"useNatureCodeNition\": \"8A\",\n" +
|
|
|
- " \"maincarKindCodeNition\": \"A\",\n" +
|
|
|
- " \"carKindCodeNition\": \"A0\",\n" +
|
|
|
- " \"licenseKindCodeNition\": \"02\",\n" +
|
|
|
- " \"clauseType\": \"F54\",\n" +
|
|
|
- " \"natureOfUse\": 0,\n" +
|
|
|
- " \"addressRevise\": \"0\",\n" +
|
|
|
- " \"carOwnerIdentifyTypeSides\": \"back\",\n" +
|
|
|
- " \"carOwnerIdentifyNumberRecogNition\": \"140121196207080534\",\n" +
|
|
|
- " \"carAddress\": \"山西省清徐县清源镇六合村北大街34号\",\n" +
|
|
|
- " \"birthdayRecogNition\": \"1962-07-08\",\n" +
|
|
|
- " \"sexRecogNition\": \"1\",\n" +
|
|
|
- " \"ownersAddress\": \"山西省清徐县清源镇六合村北大街34号\",\n" +
|
|
|
- " \"carProvinceName\": \"山西省\",\n" +
|
|
|
- " \"carCityName\": \"太原市\",\n" +
|
|
|
- " \"carPostCode\": \"140100\",\n" +
|
|
|
- " \"carOwnerLongFlag\": \"1\",\n" +
|
|
|
- " \"vinClick\": \"1\",\n" +
|
|
|
- " \"tonCountlb\": 0,\n" +
|
|
|
- " \"seatCountlb\": 5,\n" +
|
|
|
- " \"exhaustScalelb\": 1.997,\n" +
|
|
|
- " \"powerLB\": 1.997,\n" +
|
|
|
- " \"newFuelModel\": \"正常缴税\",\n" +
|
|
|
- " \"mvSpeed\": null,\n" +
|
|
|
- " \"gearBoxtyPecodeName\": \"BS03-CVT\",\n" +
|
|
|
- " \"gearBoxtyPecode\": \"BS03\",\n" +
|
|
|
- " \"transmissionttype\": \"CVT\",\n" +
|
|
|
- " \"stopFlagCodeName\": \"1-停产\",\n" +
|
|
|
- " \"stopFlagCode\": \"1\",\n" +
|
|
|
- " \"riskTypeCodeName\": \"0-正常车型\",\n" +
|
|
|
- " \"riskTypeCode\": \"0\",\n" +
|
|
|
- " \"riskTypeName\": \"正常车型\",\n" +
|
|
|
- " \"vehicleClassNewCodeName\": \"JC04-中型轿车(B)\",\n" +
|
|
|
- " \"vehicleClassNewCode\": \"JC04\",\n" +
|
|
|
- " \"vehicleClassNewName\": \"中型轿车(B)\",\n" +
|
|
|
- " \"absFlag\": \"有\",\n" +
|
|
|
- " \"vehicleSize\": \"4930*1845*1470\",\n" +
|
|
|
- " \"newFuelModelName\": \"正常缴税\",\n" +
|
|
|
- " \"purchasePrice\": \"149800\",\n" +
|
|
|
- " \"brandCode\": \"BTAALD0103\",\n" +
|
|
|
- " \"carbrand\": \"雅阁(ACCORD)牌\",\n" +
|
|
|
- " \"modelCodeOld\": \"BTAALD0103\",\n" +
|
|
|
- " \"vinModel\": \"BTAALD0103\",\n" +
|
|
|
- " \"madeFactory\": \"广汽本田汽车有限公司\",\n" +
|
|
|
- " \"carUsage\": \"雅阁HG7205AAC4轿车\",\n" +
|
|
|
- " \"vehicleBrand\": \"雅阁HG7205AAC4轿车\",\n" +
|
|
|
- " \"modelCode\": \"BGQEYHUC0008\",\n" +
|
|
|
- " \"vehicleCode\": \"BGQEYHUC000871A1\",\n" +
|
|
|
- " \"actualValue\": \"29960.0\",\n" +
|
|
|
- " \"carName\": \"雅阁HG7205AAC4 舒适版\",\n" +
|
|
|
- " \"pureRiskPremium\": \"1\",\n" +
|
|
|
- " \"noticeType\": \"HG7205AAC4\",\n" +
|
|
|
- " \"ymModelSegmentation\": \"\",\n" +
|
|
|
- " \"basePureRiskPremium\": \"1290.596000\",\n" +
|
|
|
- " \"certifiCateDate\": null,\n" +
|
|
|
- " \"makeDate\": null,\n" +
|
|
|
- " \"frameNo\": \"LHGCR1640E8037440\",\n" +
|
|
|
- " \"clauseTypeSystem\": \"04\",\n" +
|
|
|
- " \"identify\": \"1\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"prpTinsured\": {\n" +
|
|
|
- " \"appliNationality\": \"中国\",\n" +
|
|
|
- " \"insuredNationality\": \"中国\",\n" +
|
|
|
- " \"appliNationalityCode\": \"156\",\n" +
|
|
|
- " \"insuredNationalityCode\": \"156\",\n" +
|
|
|
- " \"appliModifyFlag\": \"\",\n" +
|
|
|
- " \"insuredModifyFlag\": \"\",\n" +
|
|
|
- " \"appliUnitType\": \"12\",\n" +
|
|
|
- " \"insuredUnitType\": \"12\",\n" +
|
|
|
- " \"appliInsuredNature\": \"3\",\n" +
|
|
|
- " \"appliIDValidDate\": \"9999-12-31\",\n" +
|
|
|
- " \"appliIDValidStartDate\": \"2014-02-17\",\n" +
|
|
|
- " \"appliLowerViewFlag\": \"0\",\n" +
|
|
|
- " \"appliUnitcodeTimes\": null,\n" +
|
|
|
- " \"appliLinkmanIDTimes\": null,\n" +
|
|
|
- " \"appliShareholdersIDTimes\": null,\n" +
|
|
|
- " \"appliLegalRepresentativeIDTimes\": null,\n" +
|
|
|
- " \"appliValidDateLongFlag\": \"0\",\n" +
|
|
|
- " \"appliUnitcodeTimesLongFlag\": \"0\",\n" +
|
|
|
- " \"insuredInsuredNature\": \"3\",\n" +
|
|
|
- " \"insuredIDValidDate\": \"9999-12-31\",\n" +
|
|
|
- " \"insuredIDValidStartDate\": \"2014-02-17\",\n" +
|
|
|
- " \"insuredLowerViewFlag\": \"0\",\n" +
|
|
|
- " \"insuredUnitcodeTimes\": null,\n" +
|
|
|
- " \"insuredLinkmanIDTimes\": null,\n" +
|
|
|
- " \"insuredBeneficialOwnerIDTimes\": null,\n" +
|
|
|
- " \"insuredShareholdersIDTimes\": null,\n" +
|
|
|
- " \"insuredLegalRepresentativeIDTimes\": null,\n" +
|
|
|
- " \"insuredValidDateLongFlag\": \"0\",\n" +
|
|
|
- " \"insuredUnitcodeTimesLongFlag\": \"0\",\n" +
|
|
|
- " \"contactNumber\": null,\n" +
|
|
|
- " \"contactPostAddress\": \"山西省清徐县清源镇六合村北大街34号\",\n" +
|
|
|
- " \"contactBank\": null,\n" +
|
|
|
- " \"contactAccount\": null,\n" +
|
|
|
- " \"appliName\": \"韩云福\",\n" +
|
|
|
- " \"appliIdentifyType\": \"01\",\n" +
|
|
|
- " \"appliIdentifyNumber\": \"140121196207080534\",\n" +
|
|
|
- " \"appliBusinessRegistrationNo\": null,\n" +
|
|
|
- " \"appliOrgCode\": null,\n" +
|
|
|
- " \"appliLinkerIdentifiNumber\": \"\",\n" +
|
|
|
- " \"appliSex\": \"1\",\n" +
|
|
|
- " \"appliAgeW\": \"63\",\n" +
|
|
|
- " \"appliBirthday\": \"1962-07-08\",\n" +
|
|
|
- " \"agentidcardtype\": \"01\",\n" +
|
|
|
- " \"appliOtherIdentifyType\": \"\",\n" +
|
|
|
- " \"appliOtherIdentifyNumber\": \"\",\n" +
|
|
|
- " \"appliMobile\": \"17535521256\",\n" +
|
|
|
- " \"appliAreas\": \"山西省太原市清徐县\",\n" +
|
|
|
- " \"appliAddress\": \"山西省清徐县清源镇六合村北大街34号\",\n" +
|
|
|
- " \"appliPostCode\": \"140100\",\n" +
|
|
|
- " \"appliclientNatureCode\": \" \",\n" +
|
|
|
- " \"appliclientNatureName\": \" \",\n" +
|
|
|
- " \"insuredclientNatureCode\": \" \",\n" +
|
|
|
- " \"insuredclientNatureName\": \" \",\n" +
|
|
|
- " \"appliLinkerName\": \"韩云福\",\n" +
|
|
|
- " \"insuredPostCode\": \"140100\",\n" +
|
|
|
- " \"appliProvinceName\": \"山西省\",\n" +
|
|
|
- " \"appliCityName\": \"太原市\",\n" +
|
|
|
- " \"insuredProvinceName\": \"\",\n" +
|
|
|
- " \"insuredCityName\": \"\",\n" +
|
|
|
- " \"insuredAreas\": \"山西省太原市清徐县\",\n" +
|
|
|
- " \"appliLegalBeneficiary\": \"法定\",\n" +
|
|
|
- " \"insuredLegalBeneficiary\": \"法定\",\n" +
|
|
|
- " \"appliVIPType\": \"00\",\n" +
|
|
|
- " \"appliVIPFlag\": \"00\",\n" +
|
|
|
- " \"appliBusinesssource\": \"\",\n" +
|
|
|
- " \"appliOccupationCode\": \"10201\",\n" +
|
|
|
- " \"appliOccupation\": \"国家权力机关负责人\",\n" +
|
|
|
- " \"is_Agency_Handling\": \"\",\n" +
|
|
|
- " \"userIdentityTypePipe\": \"身份证\",\n" +
|
|
|
- " \"insuredIdentifyType\": \"01\",\n" +
|
|
|
- " \"insuredName\": \"韩云福\",\n" +
|
|
|
- " \"insuredLinkerName\": \"韩云福\",\n" +
|
|
|
- " \"insuredIdentifyNumber\": \"140121196207080534\",\n" +
|
|
|
- " \"insuredSex\": \"1\",\n" +
|
|
|
- " \"insuredAddress\": \"\",\n" +
|
|
|
- " \"insuredAgeW\": \"63\",\n" +
|
|
|
- " \"insuredBirthday\": \"1962-07-08\",\n" +
|
|
|
- " \"appliIdentifyTypeSides\": \"face\",\n" +
|
|
|
- " \"insuredBusinesssource\": \"\",\n" +
|
|
|
- " \"insuredOrgCode\": null,\n" +
|
|
|
- " \"insuredBusinessRegistrationNo\": null,\n" +
|
|
|
- " \"insuredLinkerIdentifiNumber\": \"\",\n" +
|
|
|
- " \"insuredMobile\": \"17535521256\",\n" +
|
|
|
- " \"insuredVIPType\": \"00\",\n" +
|
|
|
- " \"insuredVIPFlag\": \"00\",\n" +
|
|
|
- " \"insuredOccupation\": \"国家权力机关负责人\",\n" +
|
|
|
- " \"insuredOccupationCode\": \"10201\",\n" +
|
|
|
- " \"agentidcard\": \"140121196207080534\",\n" +
|
|
|
- " \"appliPostName\": \"清徐县\",\n" +
|
|
|
- " \"appliLegalRepresentative\": \"\",\n" +
|
|
|
- " \"appliShareholders\": \"\",\n" +
|
|
|
- " \"appliBsinessScope\": \"\",\n" +
|
|
|
- " \"appliShareholdersIDType\": \"\",\n" +
|
|
|
- " \"appliShareholdersIDNum\": \"\",\n" +
|
|
|
- " \"appliLegalRepresentativeIDType\": \"\",\n" +
|
|
|
- " \"appliLegalRepresentativeIDNum\": \"\",\n" +
|
|
|
- " \"appliLinkmanIDType\": \"\",\n" +
|
|
|
- " \"appliLinkmanIDNum\": \"\",\n" +
|
|
|
- " \"appliLinkmanNationality\": \"\",\n" +
|
|
|
- " \"appliRegisteredCapital\": null,\n" +
|
|
|
- " \"appliUnitNature\": \"\",\n" +
|
|
|
- " \"insuredLegalRepresentative\": \"\",\n" +
|
|
|
- " \"insuredShareholders\": \"\",\n" +
|
|
|
- " \"insuredBsinessScope\": \"\",\n" +
|
|
|
- " \"insuredShareholdersIDType\": \"\",\n" +
|
|
|
- " \"insuredShareholdersIDNum\": \"\",\n" +
|
|
|
- " \"insuredLegalRepresentativeIDType\": \"\",\n" +
|
|
|
- " \"insuredLegalRepresentativeIDNum\": \"\",\n" +
|
|
|
- " \"insuredLinkmanIDType\": \"\",\n" +
|
|
|
- " \"insuredLinkmanIDNum\": \"\",\n" +
|
|
|
- " \"insuredLinkmanNationality\": \"\",\n" +
|
|
|
- " \"insuredBeneficialOwnerName\": \"\",\n" +
|
|
|
- " \"insuredBeneficialOwnerNationality\": \"\",\n" +
|
|
|
- " \"insuredBeneficialOwnerIDType\": \"\",\n" +
|
|
|
- " \"insuredBeneficialOwnerIDNum\": \"\",\n" +
|
|
|
- " \"insuredBeneficialOwnerAddress\": \"\",\n" +
|
|
|
- " \"insuredRegisteredCapital\": null,\n" +
|
|
|
- " \"insuredUnitNature\": \"\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"prpDcarModel\": {\n" +
|
|
|
- " \"isQueryByVinNo\": true\n" +
|
|
|
- " },\n" +
|
|
|
- " \"prpTengiNeerList\": [\n" +
|
|
|
- " {\n" +
|
|
|
- " \"projectname\": \"\",\n" +
|
|
|
- " \"projectcode\": \"\"\n" +
|
|
|
- " }\n" +
|
|
|
- " ],\n" +
|
|
|
- " \"ocrOrder\": {\n" +
|
|
|
- " \"ocrCarOwner\": \"韩云福\",\n" +
|
|
|
- " \"ocrCarOwnerIdentifyNumber\": \"140121196207080534\",\n" +
|
|
|
- " \"ocrCarAddress\": \"山西省清徐县清源镇六合村北大街34号\",\n" +
|
|
|
- " \"ocrIdvalidStartDate\": \"2014-02-17T00:00:00.000Z\",\n" +
|
|
|
- " \"ocrIdValidDate\": \"2024-02-17T00:00:00.000Z\",\n" +
|
|
|
- " \"ocrAppliName\": \"韩云福\",\n" +
|
|
|
- " \"ocrAppliIdentifyNumber\": \"140121196207080534\",\n" +
|
|
|
- " \"ocrAppliAddress\": \"山西省清徐县清源镇六合村北大街34号\",\n" +
|
|
|
- " \"ocrAppliIDValidStartDate\": \"2014-02-17T00:00:00.000Z\",\n" +
|
|
|
- " \"ocrAppliIDValidDate\": \"2024-02-17T00:00:00.000Z\",\n" +
|
|
|
- " \"ocrInsuredName\": \"韩云福\",\n" +
|
|
|
- " \"ocrInsuredIdentifyNumber\": \"140121196207080534\",\n" +
|
|
|
- " \"ocrInsuredAddress\": \"山西省清徐县清源镇六合村北大街34号\",\n" +
|
|
|
- " \"ocrInsuredIDValidStartDate\": \"2014-02-17T00:00:00.000Z\",\n" +
|
|
|
- " \"ocrInsuredIDValidDate\": \"2024-02-17T00:00:00.000Z\",\n" +
|
|
|
- " \"ocrOwnerAddress\": \"山西省清徐县清源镇六合村北大街34号\",\n" +
|
|
|
- " \"ocrVinNo\": \"LHGCR1640E8037440\",\n" +
|
|
|
- " \"ocrEngineNo\": \"1237456\",\n" +
|
|
|
- " \"ocrEnrolLDate\": \"2014-09-03T00:00:00.000Z\",\n" +
|
|
|
- " \"ocrChgOwnerDate\": \"2014-09-03T00:00:00.000Z\",\n" +
|
|
|
- " \"ocrModelName\": \"雅阁牌HG7205AAC4\",\n" +
|
|
|
- " \"ocrUseYears\": 11,\n" +
|
|
|
- " \"ocrUseNatureCode\": \"8A\",\n" +
|
|
|
- " \"ocrMaincarKindCode\": \"A\",\n" +
|
|
|
- " \"ocrCarKindCode\": \"A0\",\n" +
|
|
|
- " \"ocrLicenseCategory\": \"K33\",\n" +
|
|
|
- " \"ocrLicenseKindCode\": \"02\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"agriFlagBC\": \"0\",\n" +
|
|
|
- " \"insuredTypeTmp\": \"1\",\n" +
|
|
|
- " \"proposalNO\": \"30\",\n" +
|
|
|
- " \"prpTChannel\": {\n" +
|
|
|
- " \"agentCode\": \"\",\n" +
|
|
|
- " \"saleGentType\": \"\",\n" +
|
|
|
- " \"agentIdNo\": \"\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"prptBeneficialOwnerVos\": [],\n" +
|
|
|
- " \"prptShareholderVos\": [],\n" +
|
|
|
- " \"derailleurType\": \"雅阁\",\n" +
|
|
|
- " \"carAppliTypeTmp\": 1,\n" +
|
|
|
- " \"loginComCode\": \"305002A0\",\n" +
|
|
|
- " \"feeandDiscountFlag\": \"0\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"basePartVo\": {\n" +
|
|
|
- " \"editType\": \"EditType_ProposalInput\",\n" +
|
|
|
- " \"inputType\": \"34\",\n" +
|
|
|
- " \"inputSource\": \"\",\n" +
|
|
|
- " \"includeFilePathType\": \"\",\n" +
|
|
|
- " \"loginComCode\": \"305002A0\",\n" +
|
|
|
- " \"loginComCodeSub\": \"30\",\n" +
|
|
|
- " \"loginRiskCode\": \"0500\",\n" +
|
|
|
- " \"userCode\": \"W3000399\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"bi\": {\n" +
|
|
|
- " \"prpDclauseRule\": [],\n" +
|
|
|
- " \"inintFlag\": 1,\n" +
|
|
|
- " \"prpTmain\": {\n" +
|
|
|
- " \"startDate\": \"2026-05-14\",\n" +
|
|
|
- " \"endDate\": \"2027-05-13\",\n" +
|
|
|
- " \"startHour\": 0,\n" +
|
|
|
- " \"endHour\": 24,\n" +
|
|
|
- " \"startMinute\": 0,\n" +
|
|
|
- " \"endMinute\": 0,\n" +
|
|
|
- " \"period0530\": 30,\n" +
|
|
|
- " \"immeValidStartDate\": \"\",\n" +
|
|
|
- " \"immeValidEndDate\": \"\",\n" +
|
|
|
- " \"feeandDiscountFlag\": \"0\",\n" +
|
|
|
- " \"saleChange\": \"0\",\n" +
|
|
|
- " \"immeValiFlag0518\": 0,\n" +
|
|
|
- " \"startDate0518\": \"2026-05-14T00:28:06.679Z\",\n" +
|
|
|
- " \"endDate0518\": \"2027-05-13T00:00:00.000Z\",\n" +
|
|
|
- " \"immeValidStartDate0518\": \"2026-05-13T00:28:06.679Z\",\n" +
|
|
|
- " \"immeValidEndDate0518\": \"2027-05-13T00:28:06.679Z\",\n" +
|
|
|
- " \"startHour0518\": 0,\n" +
|
|
|
- " \"endHour0518\": 24,\n" +
|
|
|
- " \"startMinute0518\": 0,\n" +
|
|
|
- " \"endMinute0518\": 0,\n" +
|
|
|
- " \"startDateFlag0518\": 0,\n" +
|
|
|
- " \"immeValiFlag0521\": 0,\n" +
|
|
|
- " \"startDate0521\": \"2026-05-14T00:28:06.679Z\",\n" +
|
|
|
- " \"endDate0521\": \"2027-05-13T00:00:00.000Z\",\n" +
|
|
|
- " \"immeValidStartDate0521\": \"2026-05-13T00:28:06.679Z\",\n" +
|
|
|
- " \"immeValidEndDate0521\": \"2027-05-13T00:28:06.679Z\",\n" +
|
|
|
- " \"startHour0521\": 0,\n" +
|
|
|
- " \"endHour0521\": 24,\n" +
|
|
|
- " \"startMinute0521\": 0,\n" +
|
|
|
- " \"endMinute0521\": 0,\n" +
|
|
|
- " \"startDateFlag0521\": 0,\n" +
|
|
|
- " \"immeValiFlag0530\": 0,\n" +
|
|
|
- " \"startDate0530\": \"2026-05-14T00:28:06.679Z\",\n" +
|
|
|
- " \"endDate0530\": \"2027-05-13T00:00:00.000Z\",\n" +
|
|
|
- " \"immeValidStartDate0530\": \"2026-05-13T00:28:06.679Z\",\n" +
|
|
|
- " \"immeValidEndDate0530\": \"2027-05-13T00:28:06.679Z\",\n" +
|
|
|
- " \"startHour0530\": 0,\n" +
|
|
|
- " \"endHour0530\": 24,\n" +
|
|
|
- " \"startMinute0530\": 0,\n" +
|
|
|
- " \"endMinute0530\": 0,\n" +
|
|
|
- " \"startDateFlag0530\": 0,\n" +
|
|
|
- " \"answer\": \"\",\n" +
|
|
|
- " \"expectDiscount\": \"\",\n" +
|
|
|
- " \"signDiscount\": \"\",\n" +
|
|
|
- " \"sumLowerRate\": \"\",\n" +
|
|
|
- " \"firstProposalDate\": \"2026-05-13 08:29:05\",\n" +
|
|
|
- " \"renewalFlag\": \"\",\n" +
|
|
|
- " \"sumPremium\": \"\",\n" +
|
|
|
- " \"inputDate\": \"2026-05-13\",\n" +
|
|
|
- " \"signDate\": \"2026-05-13\",\n" +
|
|
|
- " \"immeValiFlag\": \"\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"prpTmainRate\": {},\n" +
|
|
|
- " \"prpTitemCar\": {\n" +
|
|
|
- " \"termsSystem\": \"01\",\n" +
|
|
|
- " \"clauseTypeSystem\": \"04\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"ciInsureDemand\": {\n" +
|
|
|
- " \"demandNo\": \"\",\n" +
|
|
|
- " \"checkCode\": \"\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"ciInsureDemandPay\": [],\n" +
|
|
|
- " \"ciInsureDemandWarningClaim\": [],\n" +
|
|
|
- " \"prpTenGearAllocationFeeList\": [],\n" +
|
|
|
- " \"prpTchargingPostData\": [],\n" +
|
|
|
- " \"prptitemkindList\": [\n" +
|
|
|
- " {\n" +
|
|
|
- " \"checked\": true,\n" +
|
|
|
- " \"kindCode\": \"20B\",\n" +
|
|
|
- " \"kindName\": \"机动车第三者责任保险\",\n" +
|
|
|
- " \"itemKindNo\": \"33\",\n" +
|
|
|
- " \"shortRateFlag\": \"2\",\n" +
|
|
|
- " \"shortRate\": \"100.0000\",\n" +
|
|
|
- " \"startDate\": \"2026-05-14\",\n" +
|
|
|
- " \"endDate\": \"2027-05-13\",\n" +
|
|
|
- " \"calculateFlag\": \"Y\",\n" +
|
|
|
- " \"deductible\": \"\",\n" +
|
|
|
- " \"isDeductible\": 0,\n" +
|
|
|
- " \"rate\": \"\",\n" +
|
|
|
- " \"amount\": \"2000000\",\n" +
|
|
|
- " \"premium\": \"\",\n" +
|
|
|
- " \"basePremium\": \"\",\n" +
|
|
|
- " \"benchMarkPremium\": \"\",\n" +
|
|
|
- " \"standardPremuim\": \"\",\n" +
|
|
|
- " \"discount\": \"1\",\n" +
|
|
|
- " \"noTaxPremium\": \"\",\n" +
|
|
|
- " \"taxFee\": \"\",\n" +
|
|
|
- " \"taxRate\": \"0.06\",\n" +
|
|
|
- " \"value\": \"\",\n" +
|
|
|
- " \"modeCode\": \"\",\n" +
|
|
|
- " \"unitAmount\": \"\",\n" +
|
|
|
- " \"quantity\": \"\",\n" +
|
|
|
- " \"adjustRate\": \"\",\n" +
|
|
|
- " \"channelrate\": \"\",\n" +
|
|
|
- " \"flag\": \" 1 1 \",\n" +
|
|
|
- " \"mainKindFlag\": \"M\",\n" +
|
|
|
- " \"isMedical\": true,\n" +
|
|
|
- " \"isMental\": 0,\n" +
|
|
|
- " \"startHour\": 0,\n" +
|
|
|
- " \"startMinute\": 0,\n" +
|
|
|
- " \"endHour\": 0,\n" +
|
|
|
- " \"endMinute\": 0\n" +
|
|
|
- " },\n" +
|
|
|
- " {\n" +
|
|
|
- " \"checked\": true,\n" +
|
|
|
- " \"kindCode\": \"20D3\",\n" +
|
|
|
- " \"kindName\": \"机动车车上人员责任保险(驾驶员)\",\n" +
|
|
|
- " \"itemKindNo\": \"35\",\n" +
|
|
|
- " \"shortRateFlag\": \"2\",\n" +
|
|
|
- " \"shortRate\": \"100.0000\",\n" +
|
|
|
- " \"startDate\": \"2026-05-14\",\n" +
|
|
|
- " \"endDate\": \"2027-05-13\",\n" +
|
|
|
- " \"calculateFlag\": \"Y\",\n" +
|
|
|
- " \"deductible\": \"\",\n" +
|
|
|
- " \"isDeductible\": 0,\n" +
|
|
|
- " \"rate\": \"\",\n" +
|
|
|
- " \"amount\": 10000,\n" +
|
|
|
- " \"premium\": \"\",\n" +
|
|
|
- " \"basePremium\": \"\",\n" +
|
|
|
- " \"benchMarkPremium\": \"\",\n" +
|
|
|
- " \"standardPremuim\": \"\",\n" +
|
|
|
- " \"discount\": \"1\",\n" +
|
|
|
- " \"noTaxPremium\": \"\",\n" +
|
|
|
- " \"taxFee\": \"\",\n" +
|
|
|
- " \"taxRate\": \"0.06\",\n" +
|
|
|
- " \"value\": \"\",\n" +
|
|
|
- " \"modeCode\": \"\",\n" +
|
|
|
- " \"unitAmount\": \"10000\",\n" +
|
|
|
- " \"quantity\": 1,\n" +
|
|
|
- " \"adjustRate\": \"\",\n" +
|
|
|
- " \"channelrate\": \"\",\n" +
|
|
|
- " \"flag\": \" 1 1 \",\n" +
|
|
|
- " \"mainKindFlag\": \"M\",\n" +
|
|
|
- " \"isMedical\": 0,\n" +
|
|
|
- " \"isMental\": 0,\n" +
|
|
|
- " \"startHour\": 0,\n" +
|
|
|
- " \"startMinute\": 0,\n" +
|
|
|
- " \"endHour\": 0,\n" +
|
|
|
- " \"endMinute\": 0\n" +
|
|
|
- " },\n" +
|
|
|
- " {\n" +
|
|
|
- " \"checked\": true,\n" +
|
|
|
- " \"kindCode\": \"20D4\",\n" +
|
|
|
- " \"kindName\": \"机动车车上人员责任保险(乘客)\",\n" +
|
|
|
- " \"itemKindNo\": \"37\",\n" +
|
|
|
- " \"shortRateFlag\": \"2\",\n" +
|
|
|
- " \"shortRate\": \"100.0000\",\n" +
|
|
|
- " \"startDate\": \"2026-05-14\",\n" +
|
|
|
- " \"endDate\": \"2027-05-13\",\n" +
|
|
|
- " \"calculateFlag\": \"Y\",\n" +
|
|
|
- " \"deductible\": \"\",\n" +
|
|
|
- " \"isDeductible\": 0,\n" +
|
|
|
- " \"rate\": \"\",\n" +
|
|
|
- " \"amount\": 40000,\n" +
|
|
|
- " \"premium\": \"\",\n" +
|
|
|
- " \"basePremium\": \"\",\n" +
|
|
|
- " \"benchMarkPremium\": \"\",\n" +
|
|
|
- " \"standardPremuim\": \"\",\n" +
|
|
|
- " \"discount\": \"1\",\n" +
|
|
|
- " \"noTaxPremium\": \"\",\n" +
|
|
|
- " \"taxFee\": \"\",\n" +
|
|
|
- " \"taxRate\": \"0.06\",\n" +
|
|
|
- " \"value\": \"\",\n" +
|
|
|
- " \"modeCode\": \"\",\n" +
|
|
|
- " \"unitAmount\": \"10000\",\n" +
|
|
|
- " \"quantity\": 4,\n" +
|
|
|
- " \"adjustRate\": \"\",\n" +
|
|
|
- " \"channelrate\": \"\",\n" +
|
|
|
- " \"flag\": \" 1 1 \",\n" +
|
|
|
- " \"mainKindFlag\": \"M\",\n" +
|
|
|
- " \"isMedical\": 0,\n" +
|
|
|
- " \"isMental\": 0,\n" +
|
|
|
- " \"startHour\": 0,\n" +
|
|
|
- " \"startMinute\": 0,\n" +
|
|
|
- " \"endHour\": 0,\n" +
|
|
|
- " \"endMinute\": 0\n" +
|
|
|
- " },\n" +
|
|
|
- " {\n" +
|
|
|
- " \"checked\": true,\n" +
|
|
|
- " \"kindCode\": \"20Z1\",\n" +
|
|
|
- " \"kindName\": \"道路救援服务特约条款\",\n" +
|
|
|
- " \"itemKindNo\": \"57\",\n" +
|
|
|
- " \"shortRateFlag\": \"2\",\n" +
|
|
|
- " \"shortRate\": \"100.0000\",\n" +
|
|
|
- " \"startDate\": \"2026-05-14\",\n" +
|
|
|
- " \"endDate\": \"2027-05-13\",\n" +
|
|
|
- " \"calculateFlag\": \"Y\",\n" +
|
|
|
- " \"deductible\": \"\",\n" +
|
|
|
- " \"isDeductible\": 0,\n" +
|
|
|
- " \"rate\": \"\",\n" +
|
|
|
- " \"amount\": \"0\",\n" +
|
|
|
- " \"premium\": \"\",\n" +
|
|
|
- " \"basePremium\": \"\",\n" +
|
|
|
- " \"benchMarkPremium\": \"\",\n" +
|
|
|
- " \"standardPremuim\": \"\",\n" +
|
|
|
- " \"discount\": \"1\",\n" +
|
|
|
- " \"noTaxPremium\": \"\",\n" +
|
|
|
- " \"taxFee\": \"\",\n" +
|
|
|
- " \"taxRate\": \"0.06\",\n" +
|
|
|
- " \"value\": \"\",\n" +
|
|
|
- " \"modeCode\": \"\",\n" +
|
|
|
- " \"unitAmount\": \"\",\n" +
|
|
|
- " \"quantity\": 22,\n" +
|
|
|
- " \"adjustRate\": \"\",\n" +
|
|
|
- " \"channelrate\": \"\",\n" +
|
|
|
- " \"flag\": \" 2 1 \",\n" +
|
|
|
- " \"mainKindFlag\": \"S\",\n" +
|
|
|
- " \"startHour\": 0,\n" +
|
|
|
- " \"startMinute\": 0,\n" +
|
|
|
- " \"endHour\": 0,\n" +
|
|
|
- " \"endMinute\": 0\n" +
|
|
|
- " },\n" +
|
|
|
- " {\n" +
|
|
|
- " \"checked\": true,\n" +
|
|
|
- " \"kindCode\": \"20Z2\",\n" +
|
|
|
- " \"kindName\": \"车辆安全检测特约条款\",\n" +
|
|
|
- " \"itemKindNo\": \"58\",\n" +
|
|
|
- " \"shortRateFlag\": \"2\",\n" +
|
|
|
- " \"shortRate\": \"100.0000\",\n" +
|
|
|
- " \"startDate\": \"2026-05-14\",\n" +
|
|
|
- " \"endDate\": \"2027-05-13\",\n" +
|
|
|
- " \"calculateFlag\": \"Y\",\n" +
|
|
|
- " \"deductible\": \"\",\n" +
|
|
|
- " \"isDeductible\": 0,\n" +
|
|
|
- " \"rate\": \"\",\n" +
|
|
|
- " \"amount\": \"0\",\n" +
|
|
|
- " \"premium\": \"\",\n" +
|
|
|
- " \"basePremium\": \"\",\n" +
|
|
|
- " \"benchMarkPremium\": \"\",\n" +
|
|
|
- " \"standardPremuim\": \"\",\n" +
|
|
|
- " \"discount\": \"1\",\n" +
|
|
|
- " \"noTaxPremium\": \"\",\n" +
|
|
|
- " \"taxFee\": \"\",\n" +
|
|
|
- " \"taxRate\": \"0.06\",\n" +
|
|
|
- " \"value\": \"\",\n" +
|
|
|
- " \"modeCode\": \"\",\n" +
|
|
|
- " \"unitAmount\": \"\",\n" +
|
|
|
- " \"quantity\": 1,\n" +
|
|
|
- " \"adjustRate\": \"\",\n" +
|
|
|
- " \"channelrate\": \"\",\n" +
|
|
|
- " \"flag\": \" 2 1 \",\n" +
|
|
|
- " \"mainKindFlag\": \"S\",\n" +
|
|
|
- " \"startHour\": 0,\n" +
|
|
|
- " \"startMinute\": 0,\n" +
|
|
|
- " \"endHour\": 0,\n" +
|
|
|
- " \"endMinute\": 0\n" +
|
|
|
- " },\n" +
|
|
|
- " {\n" +
|
|
|
- " \"checked\": true,\n" +
|
|
|
- " \"kindCode\": \"20Z4\",\n" +
|
|
|
- " \"kindName\": \"代为送检服务特约条款\",\n" +
|
|
|
- " \"itemKindNo\": \"38\",\n" +
|
|
|
- " \"shortRateFlag\": \"2\",\n" +
|
|
|
- " \"shortRate\": \"100.0000\",\n" +
|
|
|
- " \"startDate\": \"2026-05-14\",\n" +
|
|
|
- " \"endDate\": \"2027-05-13\",\n" +
|
|
|
- " \"calculateFlag\": \"Y\",\n" +
|
|
|
- " \"deductible\": \"\",\n" +
|
|
|
- " \"isDeductible\": 0,\n" +
|
|
|
- " \"rate\": \"\",\n" +
|
|
|
- " \"amount\": \"0\",\n" +
|
|
|
- " \"premium\": \"\",\n" +
|
|
|
- " \"basePremium\": \"\",\n" +
|
|
|
- " \"benchMarkPremium\": \"\",\n" +
|
|
|
- " \"standardPremuim\": \"\",\n" +
|
|
|
- " \"discount\": \"1\",\n" +
|
|
|
- " \"noTaxPremium\": \"\",\n" +
|
|
|
- " \"taxFee\": \"\",\n" +
|
|
|
- " \"taxRate\": \"0.06\",\n" +
|
|
|
- " \"value\": \"\",\n" +
|
|
|
- " \"modeCode\": \"\",\n" +
|
|
|
- " \"unitAmount\": \"\",\n" +
|
|
|
- " \"quantity\": 1,\n" +
|
|
|
- " \"adjustRate\": \"\",\n" +
|
|
|
- " \"channelrate\": \"\",\n" +
|
|
|
- " \"flag\": \" 2 1 \",\n" +
|
|
|
- " \"mainKindFlag\": \"S\",\n" +
|
|
|
- " \"startHour\": 0,\n" +
|
|
|
- " \"startMinute\": 0,\n" +
|
|
|
- " \"endHour\": 0,\n" +
|
|
|
- " \"endMinute\": 0\n" +
|
|
|
- " },\n" +
|
|
|
- " {\n" +
|
|
|
- " \"checked\": true,\n" +
|
|
|
- " \"kindCode\": \"20Y\",\n" +
|
|
|
- " \"kindName\": \"附加医保外医疗费用责任险-三者险\",\n" +
|
|
|
- " \"itemKindNo\": \"54\",\n" +
|
|
|
- " \"shortRateFlag\": \"2\",\n" +
|
|
|
- " \"shortRate\": \"100.0000\",\n" +
|
|
|
- " \"startDate\": \"2026-05-14\",\n" +
|
|
|
- " \"endDate\": \"2027-05-13\",\n" +
|
|
|
- " \"calculateFlag\": \"Y\",\n" +
|
|
|
- " \"deductible\": \"\",\n" +
|
|
|
- " \"isDeductible\": 0,\n" +
|
|
|
- " \"rate\": \"\",\n" +
|
|
|
- " \"amount\": \"0\",\n" +
|
|
|
- " \"premium\": \"\",\n" +
|
|
|
- " \"basePremium\": \"\",\n" +
|
|
|
- " \"benchMarkPremium\": \"\",\n" +
|
|
|
- " \"standardPremuim\": \"\",\n" +
|
|
|
- " \"discount\": \"1\",\n" +
|
|
|
- " \"noTaxPremium\": \"\",\n" +
|
|
|
- " \"taxFee\": \"\",\n" +
|
|
|
- " \"taxRate\": \"0.06\",\n" +
|
|
|
- " \"value\": \"\",\n" +
|
|
|
- " \"modeCode\": \"\",\n" +
|
|
|
- " \"unitAmount\": \"\",\n" +
|
|
|
- " \"quantity\": \"\",\n" +
|
|
|
- " \"adjustRate\": \"\",\n" +
|
|
|
- " \"channelrate\": \"\",\n" +
|
|
|
- " \"flag\": \" 2 0 \",\n" +
|
|
|
- " \"mainKindFlag\": \"S\",\n" +
|
|
|
- " \"shareSumLimitSign\": 1,\n" +
|
|
|
- " \"startHour\": 0,\n" +
|
|
|
- " \"startMinute\": 0,\n" +
|
|
|
- " \"endHour\": 0,\n" +
|
|
|
- " \"endMinute\": 0\n" +
|
|
|
- " }\n" +
|
|
|
- " ],\n" +
|
|
|
- " \"prptengageList\": [],\n" +
|
|
|
- " \"prpDclause\": [],\n" +
|
|
|
- " \"prpTcarDeviceCount\": {},\n" +
|
|
|
- " \"prpTrenewal\": [],\n" +
|
|
|
- " \"queryExpensePowerOutputVo\": {},\n" +
|
|
|
- " \"ciInsureValid\": {},\n" +
|
|
|
- " \"prpDagentVo\": {},\n" +
|
|
|
- " \"commercialInsurances\": [],\n" +
|
|
|
- " \"blPrpTRealNameVerification\": [],\n" +
|
|
|
- " \"prpTLastCarShipTax\": {},\n" +
|
|
|
- " \"duplicateInsuranceItemsSchema\": {},\n" +
|
|
|
- " \"termsSystem\": \"04\",\n" +
|
|
|
- " \"inputRisk\": 1,\n" +
|
|
|
- " \"inputRisk0518\": 1,\n" +
|
|
|
- " \"inputRisk0521\": 0,\n" +
|
|
|
- " \"inputRisk0530\": 0,\n" +
|
|
|
- " \"shortRate\": 100,\n" +
|
|
|
- " \"prpTChannel\": {\n" +
|
|
|
- " \"agentCode\": \"\",\n" +
|
|
|
- " \"saleGentType\": \"\",\n" +
|
|
|
- " \"agentIdNo\": \"\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"calculateFlagBI\": \"1\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"ci\": {\n" +
|
|
|
- " \"prpDclauseRule\": [],\n" +
|
|
|
- " \"showCarShip\": true,\n" +
|
|
|
- " \"carShipTaxInfoInit\": 1,\n" +
|
|
|
- " \"prpTmain\": {\n" +
|
|
|
- " \"startDate\": \"2026-05-31\",\n" +
|
|
|
- " \"endDate\": \"2027-05-30\",\n" +
|
|
|
- " \"startMinute\": 0,\n" +
|
|
|
- " \"endMinute\": 0,\n" +
|
|
|
- " \"immeValidStartDate\": \"\",\n" +
|
|
|
- " \"immeValidEndDate\": \"\",\n" +
|
|
|
- " \"immeValiFlag0507\": \"\",\n" +
|
|
|
- " \"startDate0507\": \"2026-05-30T16:00:00.000Z\",\n" +
|
|
|
- " \"endDate0507\": \"2027-05-29T16:00:00.000Z\",\n" +
|
|
|
- " \"immeValidStartDate0507\": \"2026-05-30T16:00:00.000Z\",\n" +
|
|
|
- " \"immeValidEndDate0507\": \"2027-05-29T16:00:00.000Z\",\n" +
|
|
|
- " \"startHour0507\": 0,\n" +
|
|
|
- " \"endHour0507\": 24,\n" +
|
|
|
- " \"startMinute0507\": 0,\n" +
|
|
|
- " \"endMinute0507\": 0,\n" +
|
|
|
- " \"startDateFlag0507\": 0,\n" +
|
|
|
- " \"immeValiFlag0507t1\": 0,\n" +
|
|
|
- " \"startDate0507t1\": \"2026-05-14T00:28:06.679Z\",\n" +
|
|
|
- " \"endDate0507t1\": \"2027-05-13T00:00:00.000Z\",\n" +
|
|
|
- " \"immeValidStartDate0507t1\": \"2026-05-13T00:28:06.679Z\",\n" +
|
|
|
- " \"immeValidEndDate0507t1\": \"2027-05-13T00:28:06.679Z\",\n" +
|
|
|
- " \"startMinute0507t1\": 0,\n" +
|
|
|
- " \"endMinute0507t1\": 0,\n" +
|
|
|
- " \"startDateFlag0507t1\": 0,\n" +
|
|
|
- " \"answer\": \"\",\n" +
|
|
|
- " \"saleChange\": \"0\",\n" +
|
|
|
- " \"firstProposalDate\": \"2026-05-13 08:29:05\",\n" +
|
|
|
- " \"renewalFlag\": \"\",\n" +
|
|
|
- " \"sumPremium\": \"\",\n" +
|
|
|
- " \"biAnswer\": \"\",\n" +
|
|
|
- " \"startHour\": 0,\n" +
|
|
|
- " \"endHour\": 24,\n" +
|
|
|
- " \"immeValiFlag\": \"\",\n" +
|
|
|
- " \"inputDate\": \"2026-05-13\",\n" +
|
|
|
- " \"signDate\": \"2026-05-13\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"prpTitemCar\": {\n" +
|
|
|
- " \"clauseTypeSystem\": \"04\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"prpTmainRate\": {},\n" +
|
|
|
- " \"prptitemkindList\": [\n" +
|
|
|
- " {\n" +
|
|
|
- " \"kindCode\": \"BZ\",\n" +
|
|
|
- " \"kindName\": \"机动车交通事故责任强制保险\",\n" +
|
|
|
- " \"itemKindNo\": \"0\",\n" +
|
|
|
- " \"shortRateFlag\": \"2\",\n" +
|
|
|
- " \"shortRate\": \"100.0000\",\n" +
|
|
|
- " \"startDate\": \"2026-05-31\",\n" +
|
|
|
- " \"endDate\": \"2027-05-30\",\n" +
|
|
|
- " \"calculateFlag\": \"N\",\n" +
|
|
|
- " \"deductible\": \"\",\n" +
|
|
|
- " \"isDeductible\": true,\n" +
|
|
|
- " \"rate\": \"\",\n" +
|
|
|
- " \"amount\": \"\",\n" +
|
|
|
- " \"premium\": \"\",\n" +
|
|
|
- " \"basePremium\": \"\",\n" +
|
|
|
- " \"benchMarkPremium\": \"0\",\n" +
|
|
|
- " \"discount\": \"1\",\n" +
|
|
|
- " \"noTaxPremium\": \"\",\n" +
|
|
|
- " \"taxFee\": \"\",\n" +
|
|
|
- " \"taxRate\": \"0.06\",\n" +
|
|
|
- " \"flag\": \" 2 03\",\n" +
|
|
|
- " \"startHour\": 0,\n" +
|
|
|
- " \"startMinute\": 0,\n" +
|
|
|
- " \"endHour\": 0,\n" +
|
|
|
- " \"endMinute\": 0\n" +
|
|
|
- " }\n" +
|
|
|
- " ],\n" +
|
|
|
- " \"prptengageList\": [],\n" +
|
|
|
- " \"prpDclause\": [],\n" +
|
|
|
- " \"prpTitemCarExt\": {},\n" +
|
|
|
- " \"ciInsureDemand\": {\n" +
|
|
|
- " \"demandNo\": \"\",\n" +
|
|
|
- " \"checkCode\": \"\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"ciInsureDemandPay\": [],\n" +
|
|
|
- " \"ciInsureDemandLoss\": [],\n" +
|
|
|
- " \"ciInsureDemandWarningClaim\": [],\n" +
|
|
|
- " \"ciCarShipTaxQGDemandSchema\": {},\n" +
|
|
|
- " \"cICarshipTaxDemandSchema\": {},\n" +
|
|
|
- " \"prpTcarshipTax\": {\n" +
|
|
|
- " \"calLateFeeFlag\": \"\",\n" +
|
|
|
- " \"calPayBalanceFeeFlag\": \"\",\n" +
|
|
|
- " \"extendChar2\": \"K33\",\n" +
|
|
|
- " \"lateFeeStartDate\": null,\n" +
|
|
|
- " \"hisPolicyEndDate\": null,\n" +
|
|
|
- " \"payStartDate\": null,\n" +
|
|
|
- " \"payEndDate\": null,\n" +
|
|
|
- " \"taxDocumentDate\": null,\n" +
|
|
|
- " \"taxpayerName\": \"韩云福\",\n" +
|
|
|
- " \"taxpayerIdentifier\": \"140121196207080534\",\n" +
|
|
|
- " \"taxRelifFlag\": \"1\",\n" +
|
|
|
- " \"calculateMode\": \"1\",\n" +
|
|
|
- " \"completeKerbMass\": \"1495\",\n" +
|
|
|
- " \"taxItemCode\": \"A\",\n" +
|
|
|
- " \"taxItemName\": \"载客汽车\",\n" +
|
|
|
- " \"taxItemDetailCode\": \"A1\",\n" +
|
|
|
- " \"taxItemDetailName\": \"小型客车\",\n" +
|
|
|
- " \"taxUnit\": \"1\",\n" +
|
|
|
- " \"sumPayTax\": \"\",\n" +
|
|
|
- " \"certificateDate\": null\n" +
|
|
|
- " },\n" +
|
|
|
- " \"prpTrenewal\": [],\n" +
|
|
|
- " \"queryExpensePowerOutputVo\": {},\n" +
|
|
|
- " \"ciInsureValid\": {},\n" +
|
|
|
- " \"trafficInsurance\": {},\n" +
|
|
|
- " \"blPrpTRealNameVerification\": [],\n" +
|
|
|
- " \"prpTLastCarShipTax\": {},\n" +
|
|
|
- " \"duplicateInsuranceItemsSchema\": {},\n" +
|
|
|
- " \"image\": {\n" +
|
|
|
- " \"changingThisBreaksApplicationSecurity\": \"data:image/png;base64,\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"inputRisk\": 1,\n" +
|
|
|
- " \"inputRisk0507\": 1,\n" +
|
|
|
- " \"inputRisk0507t1\": 0,\n" +
|
|
|
- " \"shortRate\": 100,\n" +
|
|
|
- " \"prpTChannel\": {\n" +
|
|
|
- " \"agentCode\": \"\",\n" +
|
|
|
- " \"saleGentType\": \"\",\n" +
|
|
|
- " \"agentIdNo\": \"\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"calculateFlagCI\": \"1\"\n" +
|
|
|
- " }\n" +
|
|
|
- "}";
|
|
|
-
|
|
|
- String json2 = "{\n" +
|
|
|
- " \"basePartVo\": {\n" +
|
|
|
- " \"editType\": \"EditType_ProposalInput\",\n" +
|
|
|
- " \"includeFilePathType\": \"\",\n" +
|
|
|
- " \"inputSource\": \"\",\n" +
|
|
|
- " \"inputType\": \"34\",\n" +
|
|
|
- " \"loginComCode\": \"305002A0\",\n" +
|
|
|
- " \"loginComCodeSub\": \"30\",\n" +
|
|
|
- " \"loginRiskCode\": \"0500\",\n" +
|
|
|
- " \"userCode\": \"W3000399\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"bc\": {\n" +
|
|
|
- " \"agriFlagBC\": \"0\",\n" +
|
|
|
- " \"baseInfoInit\": 2,\n" +
|
|
|
- " \"derailleurType\": \"雅阁\",\n" +
|
|
|
- " \"feeandDiscountFlag\": \"0\",\n" +
|
|
|
- " \"insuredTypeTmp\": 1,\n" +
|
|
|
- " \"loginComCode\": \"305002A0\",\n" +
|
|
|
- " \"ocrOrder\": {\n" +
|
|
|
- " \"ocrAppliAddress\": \"山西省清徐县清源镇六合村北大街34号\",\n" +
|
|
|
- " \"ocrAppliIDValidDate\": \"2044-02-17\",\n" +
|
|
|
- " \"ocrAppliIDValidStartDate\": \"2024-02-17\",\n" +
|
|
|
- " \"ocrAppliIdentifyNumber\": \"140121196207080534\",\n" +
|
|
|
- " \"ocrAppliName\": \"韩云福\",\n" +
|
|
|
- " \"ocrCarAddress\": \"山西省清徐县清源镇六合村北大街34号\",\n" +
|
|
|
- " \"ocrCarKindCode\": \"A0\",\n" +
|
|
|
- " \"ocrCarOwner\": \"韩云福\",\n" +
|
|
|
- " \"ocrCarOwnerIdentifyNumber\": \"140121196207080534\",\n" +
|
|
|
- " \"ocrChgOwnerDate\": \"2014-09-03\",\n" +
|
|
|
- " \"ocrEngineNo\": \"1237456\",\n" +
|
|
|
- " \"ocrEnrolLDate\": \"2014-09-03\",\n" +
|
|
|
- " \"ocrIdValidDate\": \"2044-02-17\",\n" +
|
|
|
- " \"ocrIdvalidStartDate\": \"2024-02-17\",\n" +
|
|
|
- " \"ocrInsuredAddress\": \"山西省清徐县清源镇六合村北大街34号\",\n" +
|
|
|
- " \"ocrInsuredIDValidDate\": \"2044-02-17\",\n" +
|
|
|
- " \"ocrInsuredIDValidStartDate\": \"2024-02-17\",\n" +
|
|
|
- " \"ocrInsuredIdentifyNumber\": \"140121196207080534\",\n" +
|
|
|
- " \"ocrInsuredName\": \"韩云福\",\n" +
|
|
|
- " \"ocrLicenseCategory\": \"K33\",\n" +
|
|
|
- " \"ocrLicenseKindCode\": \"01\",\n" +
|
|
|
- " \"ocrMaincarKindCode\": \"A\",\n" +
|
|
|
- " \"ocrModelName\": \"雅阁HG7205AAC4轿车\",\n" +
|
|
|
- " \"ocrOwnerAddress\": \"山西省清徐县清源镇六合村北大街34号\",\n" +
|
|
|
- " \"ocrUseNatureCode\": \"8A\",\n" +
|
|
|
- " \"ocrUseYears\": 11,\n" +
|
|
|
- " \"ocrVinNo\": \"LHGCR1640E8037440\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"proposalNO\": \"30\",\n" +
|
|
|
- " \"prpDcarModel\": {\n" +
|
|
|
- " \"isQueryByVinNo\": true\n" +
|
|
|
- " },\n" +
|
|
|
- " \"prpTChannel\": {},\n" +
|
|
|
- " \"prpTengiNeerList\": [\n" +
|
|
|
- " {\n" +
|
|
|
- " \"projectcode\": \"\",\n" +
|
|
|
- " \"projectname\": \"\"\n" +
|
|
|
- " }\n" +
|
|
|
- " ],\n" +
|
|
|
- " \"prpTinsured\": {\n" +
|
|
|
- " \"agentidcardtype\": \"01\",\n" +
|
|
|
- " \"appliAddress\": \"山西省清徐县清源镇六合村北大街34号\",\n" +
|
|
|
- " \"appliAgeW\": \"63\",\n" +
|
|
|
- " \"appliAreas\": \"山西省太原市清徐县\",\n" +
|
|
|
- " \"appliBirthday\": \"1962-07-08\",\n" +
|
|
|
- " \"appliBsinessScope\": \"\",\n" +
|
|
|
- " \"appliBusinesssource\": \"\",\n" +
|
|
|
- " \"appliCityName\": \"太原市\",\n" +
|
|
|
- " \"appliIDValidDate\": \"2044-02-17\",\n" +
|
|
|
- " \"appliIDValidStartDate\": \"2024-02-17\",\n" +
|
|
|
- " \"appliIdentifyNumber\": \"140121196207080534\",\n" +
|
|
|
- " \"appliIdentifyType\": \"01\",\n" +
|
|
|
- " \"appliIdentifyTypeSides\": \"back\",\n" +
|
|
|
- " \"appliInsuredNature\": \"3\",\n" +
|
|
|
- " \"appliLegalBeneficiary\": \"法定\",\n" +
|
|
|
- " \"appliLegalRepresentative\": \"\",\n" +
|
|
|
- " \"appliLegalRepresentativeIDNum\": \"\",\n" +
|
|
|
- " \"appliLegalRepresentativeIDType\": \"\",\n" +
|
|
|
- " \"appliLinkerIdentifiNumber\": \"\",\n" +
|
|
|
- " \"appliLinkerName\": \"韩云福\",\n" +
|
|
|
- " \"appliLinkmanIDNum\": \"\",\n" +
|
|
|
- " \"appliLinkmanIDType\": \"\",\n" +
|
|
|
- " \"appliLinkmanNationality\": \"\",\n" +
|
|
|
- " \"appliLowerViewFlag\": \"0\",\n" +
|
|
|
- " \"appliMobile\": \"17536985212\",\n" +
|
|
|
- " \"appliModifyFlag\": \"\",\n" +
|
|
|
- " \"appliName\": \"韩云福\",\n" +
|
|
|
- " \"appliNationality\": \"中国\",\n" +
|
|
|
- " \"appliNationalityCode\": \"156\",\n" +
|
|
|
- " \"appliOccupation\": \"中国共产党机关负责人\",\n" +
|
|
|
- " \"appliOccupationCode\": \"80000\",\n" +
|
|
|
- " \"appliOtherIdentifyNumber\": \"\",\n" +
|
|
|
- " \"appliOtherIdentifyType\": \"\",\n" +
|
|
|
- " \"appliPostCode\": \"140100\",\n" +
|
|
|
- " \"appliPostName\": \"清徐县\",\n" +
|
|
|
- " \"appliProvinceName\": \"山西省\",\n" +
|
|
|
- " \"appliSex\": \"1\",\n" +
|
|
|
- " \"appliShareholders\": \"\",\n" +
|
|
|
- " \"appliShareholdersIDNum\": \"\",\n" +
|
|
|
- " \"appliShareholdersIDType\": \"\",\n" +
|
|
|
- " \"appliUnitNature\": \"\",\n" +
|
|
|
- " \"appliUnitType\": \"12\",\n" +
|
|
|
- " \"appliUnitcodeTimesLongFlag\": \"0\",\n" +
|
|
|
- " \"appliVIPFlag\": \"00\",\n" +
|
|
|
- " \"appliVIPType\": \"00\",\n" +
|
|
|
- " \"appliclientNatureCode\": \" \",\n" +
|
|
|
- " \"appliclientNatureName\": \" \",\n" +
|
|
|
- " \"birthday\": \"1962-07-08\",\n" +
|
|
|
- " \"insuredAgeW\": \"63\",\n" +
|
|
|
- " \"insuredAreas\": \"山西省太原市清徐县\",\n" +
|
|
|
- " \"insuredBeneficialOwnerAddress\": \"\",\n" +
|
|
|
- " \"insuredBeneficialOwnerIDNum\": \"\",\n" +
|
|
|
- " \"insuredBeneficialOwnerIDType\": \"\",\n" +
|
|
|
- " \"insuredBeneficialOwnerName\": \"\",\n" +
|
|
|
- " \"insuredBeneficialOwnerNationality\": \"\",\n" +
|
|
|
- " \"insuredBirthday\": \"1962-07-08\",\n" +
|
|
|
- " \"insuredBsinessScope\": \"\",\n" +
|
|
|
- " \"insuredCName\": \"韩云福\",\n" +
|
|
|
- " \"insuredCityName\": \"太原市\",\n" +
|
|
|
- " \"insuredIDValidDate\": \"2044-02-17\",\n" +
|
|
|
- " \"insuredIDValidStartDate\": \"2024-02-17\",\n" +
|
|
|
- " \"insuredIdentifyNumber\": \"140121196207080534\",\n" +
|
|
|
- " \"insuredIdentifyType\": \"01\",\n" +
|
|
|
- " \"insuredInsuredNature\": \"3\",\n" +
|
|
|
- " \"insuredLegalBeneficiary\": \"法定\",\n" +
|
|
|
- " \"insuredLegalRepresentative\": \"\",\n" +
|
|
|
- " \"insuredLegalRepresentativeIDNum\": \"\",\n" +
|
|
|
- " \"insuredLegalRepresentativeIDType\": \"\",\n" +
|
|
|
- " \"insuredLinkerIdentifiNumber\": \"\",\n" +
|
|
|
- " \"insuredLinkerName\": \"韩云福\",\n" +
|
|
|
- " \"insuredLinkmanIDNum\": \"\",\n" +
|
|
|
- " \"insuredLinkmanIDType\": \"\",\n" +
|
|
|
- " \"insuredLinkmanNationality\": \"\",\n" +
|
|
|
- " \"insuredLowerViewFlag\": \"0\",\n" +
|
|
|
- " \"insuredMobile\": \"17536985212\",\n" +
|
|
|
- " \"insuredModifyFlag\": \"\",\n" +
|
|
|
- " \"insuredName\": \"韩云福\",\n" +
|
|
|
- " \"insuredNationality\": \"中国\",\n" +
|
|
|
- " \"insuredNationalityCode\": \"156\",\n" +
|
|
|
- " \"insuredOccupation\": \"中国共产党机关负责人\",\n" +
|
|
|
- " \"insuredOccupationCode\": \"80000\",\n" +
|
|
|
- " \"insuredPostCode\": \"140100\",\n" +
|
|
|
- " \"insuredPostName\": \"清徐县\",\n" +
|
|
|
- " \"insuredProvinceName\": \"山西省\",\n" +
|
|
|
- " \"insuredSex\": \"1\",\n" +
|
|
|
- " \"insuredShareholders\": \"\",\n" +
|
|
|
- " \"insuredShareholdersIDNum\": \"\",\n" +
|
|
|
- " \"insuredShareholdersIDType\": \"\",\n" +
|
|
|
- " \"insuredUnitNature\": \"\",\n" +
|
|
|
- " \"insuredUnitPhone\": \"17536985212\",\n" +
|
|
|
- " \"insuredUnitType\": \"12\",\n" +
|
|
|
- " \"insuredUnitcodeTimesLongFlag\": \"0\",\n" +
|
|
|
- " \"insuredVIPFlag\": \"00\",\n" +
|
|
|
- " \"insuredVIPType\": \"00\",\n" +
|
|
|
- " \"insuredclientNatureCode\": \" \",\n" +
|
|
|
- " \"insuredclientNatureName\": \" \"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"prpTitemCar\": {\n" +
|
|
|
- " \"IDValidDate\": \"2044-02-17\",\n" +
|
|
|
- " \"absFlag\": \"有\",\n" +
|
|
|
- " \"actualValue\": \"29960.0\",\n" +
|
|
|
- " \"addressRevise\": \"0\",\n" +
|
|
|
- " \"basePureRiskPremium\": \"1290.596000\",\n" +
|
|
|
- " \"biChgOwnerFlag\": \"0\",\n" +
|
|
|
- " \"birthday\": \"1962-07-08\",\n" +
|
|
|
- " \"birthdayRecogNition\": \"1962-07-08\",\n" +
|
|
|
- " \"brandCode\": \"BTAALD0103\",\n" +
|
|
|
- " \"brandName\": \"雅阁HG7205AAC4轿车\",\n" +
|
|
|
- " \"carAddress\": \"山西省清徐县清源镇六合村北大街34号\",\n" +
|
|
|
- " \"carAreas\": \"山西省太原市清徐县\",\n" +
|
|
|
- " \"carCertificateDate\": \"\",\n" +
|
|
|
- " \"carCertificateType\": \"\",\n" +
|
|
|
- " \"carCityName\": \"太原市\",\n" +
|
|
|
- " \"carIdentifyType\": \"01\",\n" +
|
|
|
- " \"carInsuredRelation\": \"1\",\n" +
|
|
|
- " \"carKindCode\": \"A0\",\n" +
|
|
|
- " \"carKindCodeDesc\": \"\",\n" +
|
|
|
- " \"carKindCodeNition\": \"A0\",\n" +
|
|
|
- " \"carName\": \"雅阁HG7205AAC4 舒适版\",\n" +
|
|
|
- " \"carOwner\": \"韩云福\",\n" +
|
|
|
- " \"carOwnerAgeW\": \"63\",\n" +
|
|
|
- " \"carOwnerIdentifyNumber\": \"140121196207080534\",\n" +
|
|
|
- " \"carOwnerIdentifyNumberRecogNition\": \"140121196207080534\",\n" +
|
|
|
- " \"carOwnerIdentifyType\": \"01\",\n" +
|
|
|
- " \"carOwnerIdentifyTypeSides\": \"back\",\n" +
|
|
|
- " \"carOwnerNature\": \"0\",\n" +
|
|
|
- " \"carOwnerRecogNition\": \"韩云福\",\n" +
|
|
|
- " \"carPostCode\": \"140100\",\n" +
|
|
|
- " \"carProvinceName\": \"山西省\",\n" +
|
|
|
- " \"carTypeCode\": \"1\",\n" +
|
|
|
- " \"carUsage\": \"雅阁HG7205AAC4轿车\",\n" +
|
|
|
- " \"carbrand\": \"雅阁(ACCORD)牌\",\n" +
|
|
|
- " \"certifiCateDate\": \"\",\n" +
|
|
|
- " \"chargingpostFlag\": \"0\",\n" +
|
|
|
- " \"chgOwnerDate\": \"2014-09-03\",\n" +
|
|
|
- " \"chgOwnerDateRecogNition\": \"2014-09-03\",\n" +
|
|
|
- " \"chgOwnerFlag\": \"0\",\n" +
|
|
|
- " \"ciChgOwnerFlag\": \"0\",\n" +
|
|
|
- " \"clauseType\": \"F54\",\n" +
|
|
|
- " \"clauseTypeSystem\": \"04\",\n" +
|
|
|
- " \"colorCode\": \"03\",\n" +
|
|
|
- " \"comlossCondition\": \"太原市\",\n" +
|
|
|
- " \"completeKerbMass\": \"1495\",\n" +
|
|
|
- " \"compromisePrice\": \"29960.0\",\n" +
|
|
|
- " \"countryNature\": \"B\",\n" +
|
|
|
- " \"engineNo\": \"1237456\",\n" +
|
|
|
- " \"engineNoRecogNition\": \"1237456\",\n" +
|
|
|
- " \"enrollDate\": \"2014-09-03\",\n" +
|
|
|
- " \"enrollDateValueStatus\": 1,\n" +
|
|
|
- " \"enrollDateoRecogNition\": \"2014-09-03\",\n" +
|
|
|
- " \"exhaustScale\": \"1.997\",\n" +
|
|
|
- " \"exhaustScalelb\": 1.997,\n" +
|
|
|
- " \"frameNo\": \"LHGCR1640E8037440\",\n" +
|
|
|
- " \"fuelType\": \"0\",\n" +
|
|
|
- " \"gearBoxtyPecode\": \"BS03\",\n" +
|
|
|
- " \"gearBoxtyPecodeName\": \"BS03-CVT\",\n" +
|
|
|
- " \"idValidDate\": \"2044-02-17\",\n" +
|
|
|
- " \"identiFication\": 1,\n" +
|
|
|
- " \"identify\": \"1\",\n" +
|
|
|
- " \"idvalidStartDate\": \"2024-02-17\",\n" +
|
|
|
- " \"licenseCategory\": \"K33\",\n" +
|
|
|
- " \"licenseColorCode\": \"01\",\n" +
|
|
|
- " \"licenseKindCode\": \"01\",\n" +
|
|
|
- " \"licenseKindCodeNition\": \"01\",\n" +
|
|
|
- " \"licenseNo\": \"晋A345G0\",\n" +
|
|
|
- " \"licenseNoRecogNition\": \"晋A345G0\",\n" +
|
|
|
- " \"loanVehicleFlag\": \"0\",\n" +
|
|
|
- " \"lossCondition\": \"山西省\",\n" +
|
|
|
- " \"lossConditionCode\": \"Z278230500010001\",\n" +
|
|
|
- " \"madeFactory\": \"广汽本田汽车有限公司\",\n" +
|
|
|
- " \"maincarKindCode\": \"A\",\n" +
|
|
|
- " \"maincarKindCodeNition\": \"A\",\n" +
|
|
|
- " \"makeDate\": \"\",\n" +
|
|
|
- " \"modelCode\": \"BGQEYHUC0008\",\n" +
|
|
|
- " \"modelCodeOld\": \"BTAALD0103\",\n" +
|
|
|
- " \"modelName\": \"雅阁HG7205AAC4轿车\",\n" +
|
|
|
- " \"modelNameRecogNition\": \"\",\n" +
|
|
|
- " \"natureOfUse\": 1,\n" +
|
|
|
- " \"newCaRegistration\": \"1\",\n" +
|
|
|
- " \"newDeviceFlag\": \"0\",\n" +
|
|
|
- " \"newEnergyFlag\": \"0\",\n" +
|
|
|
- " \"newFuelModel\": \"0\",\n" +
|
|
|
- " \"newFuelModelName\": \"正常缴税\",\n" +
|
|
|
- " \"noticeType\": \"HG7205AAC4\",\n" +
|
|
|
- " \"ocr_invoice_flag\": \"0\",\n" +
|
|
|
- " \"ownerAddress\": \"山西省清徐县清源镇六合村北大街34号\",\n" +
|
|
|
- " \"ownerAreas\": \"山西省太原市清徐县\",\n" +
|
|
|
- " \"ownerCityName\": \"太原市\",\n" +
|
|
|
- " \"ownerPostName\": \"清徐县\",\n" +
|
|
|
- " \"ownerProvinceName\": \"山西省\",\n" +
|
|
|
- " \"ownersAddress\": \"山西省清徐县清源镇六合村北大街34号\",\n" +
|
|
|
- " \"postCode\": \"140100\",\n" +
|
|
|
- " \"power\": \"114\",\n" +
|
|
|
- " \"powerLB\": 1.997,\n" +
|
|
|
- " \"powertypecode\": \"D1\",\n" +
|
|
|
- " \"productType\": \"0101\",\n" +
|
|
|
- " \"proposalNo\": \"\",\n" +
|
|
|
- " \"purchasePrice\": \"149800\",\n" +
|
|
|
- " \"pureElectricBatteryType\": \"11\",\n" +
|
|
|
- " \"pureRiskPremium\": \"1\",\n" +
|
|
|
- " \"rateCode\": \"20\",\n" +
|
|
|
- " \"relationShip\": \"1\",\n" +
|
|
|
- " \"restricFlag\": \"\",\n" +
|
|
|
- " \"riskTypeCode\": \"0\",\n" +
|
|
|
- " \"riskTypeCodeName\": \"0-正常车型\",\n" +
|
|
|
- " \"riskTypeName\": \"正常车型\",\n" +
|
|
|
- " \"seatCount\": \"5\",\n" +
|
|
|
- " \"seatCountlb\": 5,\n" +
|
|
|
- " \"sex\": \"1\",\n" +
|
|
|
- " \"sexRecogNition\": \"1\",\n" +
|
|
|
- " \"speed\": \"200\",\n" +
|
|
|
- " \"stopFlagCode\": \"1\",\n" +
|
|
|
- " \"stopFlagCodeName\": \"1-停产\",\n" +
|
|
|
- " \"termsSystem\": \"04\",\n" +
|
|
|
- " \"tonCount\": \"0\",\n" +
|
|
|
- " \"tonCountlb\": \"0\",\n" +
|
|
|
- " \"tractionTonCount\": \"\",\n" +
|
|
|
- " \"transmissionttype\": \"CVT\",\n" +
|
|
|
- " \"useNatureCode\": \"8A\",\n" +
|
|
|
- " \"useNatureCodeNition\": \"8A\",\n" +
|
|
|
- " \"useNatureCodeNitionNew\": \"\",\n" +
|
|
|
- " \"useYears\": 11,\n" +
|
|
|
- " \"vehicleBrand\": \"雅阁HG7205AAC4轿车\",\n" +
|
|
|
- " \"vehicleClassNewCode\": \"JC04\",\n" +
|
|
|
- " \"vehicleClassNewCodeName\": \"JC04-中型轿车(B)\",\n" +
|
|
|
- " \"vehicleClassNewName\": \"中型轿车(B)\",\n" +
|
|
|
- " \"vehicleCode\": \"BGQEYHUC000871A1\",\n" +
|
|
|
- " \"vehicleSize\": \"4930*1845*1470\",\n" +
|
|
|
- " \"vinClick\": \"1\",\n" +
|
|
|
- " \"vinModel\": \"BTAALD0103\",\n" +
|
|
|
- " \"vinNo\": \"LHGCR1640E8037440\",\n" +
|
|
|
- " \"vinNoRecogNition\": \"LHGCR1640E8037440\",\n" +
|
|
|
- " \"ymModelSegmentation\": \"\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"prpTmain\": {\n" +
|
|
|
- " \"agentCanalCode\": \" \",\n" +
|
|
|
- " \"agentCode\": \"Z278230500010001\",\n" +
|
|
|
- " \"agentName\": \"太原天勤保险代理有限公司\",\n" +
|
|
|
- " \"agreementNo\": \"Z278230500010001-005\",\n" +
|
|
|
- " \"amlCode\": \"\",\n" +
|
|
|
- " \"appliFactorFlag\": \"\",\n" +
|
|
|
- " \"arbitboardName\": \"\",\n" +
|
|
|
- " \"argueSolution\": \"1\",\n" +
|
|
|
- " \"businessNature\": \"2\",\n" +
|
|
|
- " \"channeltypeone\": \"60\",\n" +
|
|
|
- " \"channeltypeoneName\": \"个客发展\",\n" +
|
|
|
- " \"channeltypetwo\": \"0101\",\n" +
|
|
|
- " \"channeltypetwoName\": \"经代\",\n" +
|
|
|
- " \"classIdentifier\": \"00\",\n" +
|
|
|
- " \"comCode\": \"305002A0\",\n" +
|
|
|
- " \"comName\": \"太原营业大区科政保营业部经代业务部\",\n" +
|
|
|
- " \"commissionerNo\": \"\",\n" +
|
|
|
- " \"cooprOutlets\": \"\",\n" +
|
|
|
- " \"cooprOutletsName\": \"\",\n" +
|
|
|
- " \"deGentType\": \"\",\n" +
|
|
|
- " \"eProposalFlag\": \"1\",\n" +
|
|
|
- " \"goodCodes\": [],\n" +
|
|
|
- " \"handler1Code\": \"S3000222\",\n" +
|
|
|
- " \"handler1Name\": \"陶娇\",\n" +
|
|
|
- " \"insuredFactorFlag\": \"\",\n" +
|
|
|
- " \"isExpressProtectionFlag\": \"JSB00\",\n" +
|
|
|
- " \"isStandard\": \"0\",\n" +
|
|
|
- " \"lifeAgentCode\": \"\",\n" +
|
|
|
- " \"lifeAgentName\": \"\",\n" +
|
|
|
- " \"loginComCode\": \"305002A0\",\n" +
|
|
|
- " \"noCarCodes\": \"02746400001\",\n" +
|
|
|
- " \"noCarFlag\": 1,\n" +
|
|
|
- " \"noCarPremium\": 100,\n" +
|
|
|
- " \"operateDate\": \"2026-05-13\",\n" +
|
|
|
- " \"operatorCode\": \"W3000399\",\n" +
|
|
|
- " \"project\": \"\",\n" +
|
|
|
- " \"saleName\": \"\",\n" +
|
|
|
- " \"saleProfessionalNum\": \"\",\n" +
|
|
|
- " \"serviceLabelName\": \"\",\n" +
|
|
|
- " \"signDate\": \"2026-05-13\",\n" +
|
|
|
- " \"templateName\": \"\",\n" +
|
|
|
- " \"templateNo\": \"\",\n" +
|
|
|
- " \"unitMaintenanceCode\": \"3050D022512317323\",\n" +
|
|
|
- " \"unitMaintenanceName\": \"科政保天勤代理\",\n" +
|
|
|
- " \"unitMaintenanceType1Name\": \"代理\",\n" +
|
|
|
- " \"unitMaintenanceType2Name\": \"专业代理\",\n" +
|
|
|
- " \"uniteBusinessFlag\": 0,\n" +
|
|
|
- " \"unitmainTenanceType1\": \"D\",\n" +
|
|
|
- " \"unitmainTenanceType2\": \"02\",\n" +
|
|
|
- " \"uwELRrel1\": \"0\",\n" +
|
|
|
- " \"uwELRrel2\": \"0\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"prptBeneficialOwnerVos\": [],\n" +
|
|
|
- " \"prptShareholderVos\": [],\n" +
|
|
|
- " \"riskCode\": \"0500\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"bi\": {\n" +
|
|
|
- " \"blPrpTRealNameVerification\": [],\n" +
|
|
|
- " \"calculateFlagBI\": \"1\",\n" +
|
|
|
- " \"ciInsureDemand\": {\n" +
|
|
|
- " \"amount\": \"200000\",\n" +
|
|
|
- " \"basePremium\": \"950.0\",\n" +
|
|
|
- " \"benchmarkPremium\": \"950.0\",\n" +
|
|
|
- " \"carOwner\": \"韩云福\",\n" +
|
|
|
- " \"checkCode\": \"\",\n" +
|
|
|
- " \"claimAdjustReason\": \"C4\",\n" +
|
|
|
- " \"claimCoeff\": \"0.0\",\n" +
|
|
|
- " \"comCode\": \"305002A0\",\n" +
|
|
|
- " \"demandNo\": \"\",\n" +
|
|
|
- " \"demandTime\": \"2026-05-12\",\n" +
|
|
|
- " \"endDate\": \"2027-05-30\",\n" +
|
|
|
- " \"errorCode\": \"\",\n" +
|
|
|
- " \"errorMessageGo\": \"成功\",\n" +
|
|
|
- " \"frameNo\": \"LHGCR1640E8037440\",\n" +
|
|
|
- " \"lastBillDate\": \"20250530\",\n" +
|
|
|
- " \"lastYearEndDate\": \"2026-05-31\",\n" +
|
|
|
- " \"lastYearStartDate\": \"2025-05-31\",\n" +
|
|
|
- " \"licenseNo\": \"晋A345G0\",\n" +
|
|
|
- " \"operatorCode\": \"W3000399\",\n" +
|
|
|
- " \"peccancyCoeff\": \"0.0\",\n" +
|
|
|
- " \"premium\": \"950.0\",\n" +
|
|
|
- " \"reinsureFlag\": \"0\",\n" +
|
|
|
- " \"renewalFlag\": \"非重复投保\",\n" +
|
|
|
- " \"riskCode\": \"0507\",\n" +
|
|
|
- " \"startDate\": \"2026-05-31\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"ciInsureDemandPay\": [],\n" +
|
|
|
- " \"ciInsureDemandWarningClaim\": [],\n" +
|
|
|
- " \"ciInsureValid\": {},\n" +
|
|
|
- " \"commercialInsurances\": [],\n" +
|
|
|
- " \"duplicateInsuranceItemsSchema\": {},\n" +
|
|
|
- " \"inintFlag\": 1,\n" +
|
|
|
- " \"inputRisk\": 0,\n" +
|
|
|
- " \"inputRisk0518\": 1,\n" +
|
|
|
- " \"inputRisk0521\": 0,\n" +
|
|
|
- " \"inputRisk0530\": 0,\n" +
|
|
|
- " \"prpDagentVo\": {},\n" +
|
|
|
- " \"prpDclause\": [],\n" +
|
|
|
- " \"prpDclauseRule\": [],\n" +
|
|
|
- " \"prpTLastCarShipTax\": {},\n" +
|
|
|
- " \"prpTcarDeviceCount\": {},\n" +
|
|
|
- " \"prpTchargingPostData\": [],\n" +
|
|
|
- " \"prpTenGearAllocationFeeList\": [],\n" +
|
|
|
- " \"prpTitemCar\": {\n" +
|
|
|
- " \"IDValidDate\": \"2044-02-17\",\n" +
|
|
|
- " \"absFlag\": \"有\",\n" +
|
|
|
- " \"actualValue\": \"29960.0\",\n" +
|
|
|
- " \"addressRevise\": \"0\",\n" +
|
|
|
- " \"basePureRiskPremium\": \"1290.596000\",\n" +
|
|
|
- " \"biChgOwnerFlag\": \"0\",\n" +
|
|
|
- " \"birthday\": \"1962-07-08\",\n" +
|
|
|
- " \"birthdayRecogNition\": \"1962-07-08\",\n" +
|
|
|
- " \"brandCode\": \"BTAALD0103\",\n" +
|
|
|
- " \"brandName\": \"雅阁HG7205AAC4轿车\",\n" +
|
|
|
- " \"carAddress\": \"山西省清徐县清源镇六合村北大街34号\",\n" +
|
|
|
- " \"carAreas\": \"山西省太原市清徐县\",\n" +
|
|
|
- " \"carCertificateDate\": \"\",\n" +
|
|
|
- " \"carCertificateType\": \"\",\n" +
|
|
|
- " \"carCityName\": \"太原市\",\n" +
|
|
|
- " \"carIdentifyType\": \"01\",\n" +
|
|
|
- " \"carInsuredRelation\": \"1\",\n" +
|
|
|
- " \"carKindCode\": \"A0\",\n" +
|
|
|
- " \"carKindCodeDesc\": \"\",\n" +
|
|
|
- " \"carKindCodeNition\": \"A0\",\n" +
|
|
|
- " \"carName\": \"雅阁HG7205AAC4 舒适版\",\n" +
|
|
|
- " \"carOwner\": \"韩云福\",\n" +
|
|
|
- " \"carOwnerAgeW\": \"63\",\n" +
|
|
|
- " \"carOwnerIdentifyNumber\": \"140121196207080534\",\n" +
|
|
|
- " \"carOwnerIdentifyNumberRecogNition\": \"140121196207080534\",\n" +
|
|
|
- " \"carOwnerIdentifyType\": \"01\",\n" +
|
|
|
- " \"carOwnerIdentifyTypeSides\": \"back\",\n" +
|
|
|
- " \"carOwnerNature\": \"0\",\n" +
|
|
|
- " \"carOwnerRecogNition\": \"韩云福\",\n" +
|
|
|
- " \"carPostCode\": \"140100\",\n" +
|
|
|
- " \"carProvinceName\": \"山西省\",\n" +
|
|
|
- " \"carTypeCode\": \"1\",\n" +
|
|
|
- " \"carUsage\": \"雅阁HG7205AAC4轿车\",\n" +
|
|
|
- " \"carbrand\": \"雅阁(ACCORD)牌\",\n" +
|
|
|
- " \"certifiCateDate\": \"\",\n" +
|
|
|
- " \"chargingpostFlag\": \"0\",\n" +
|
|
|
- " \"chgOwnerDate\": \"2014-09-03\",\n" +
|
|
|
- " \"chgOwnerDateRecogNition\": \"2014-09-03\",\n" +
|
|
|
- " \"chgOwnerFlag\": \"0\",\n" +
|
|
|
- " \"ciChgOwnerFlag\": \"0\",\n" +
|
|
|
- " \"clauseType\": \"F54\",\n" +
|
|
|
- " \"clauseTypeSystem\": \"04\",\n" +
|
|
|
- " \"colorCode\": \"03\",\n" +
|
|
|
- " \"comlossCondition\": \"太原市\",\n" +
|
|
|
- " \"completeKerbMass\": \"1495\",\n" +
|
|
|
- " \"compromisePrice\": \"29960.0\",\n" +
|
|
|
- " \"countryNature\": \"B\",\n" +
|
|
|
- " \"engineNo\": \"1237456\",\n" +
|
|
|
- " \"engineNoRecogNition\": \"1237456\",\n" +
|
|
|
- " \"enrollDate\": \"2014-09-03\",\n" +
|
|
|
- " \"enrollDateValueStatus\": 1,\n" +
|
|
|
- " \"enrollDateoRecogNition\": \"2014-09-03\",\n" +
|
|
|
- " \"exhaustScale\": \"1.997\",\n" +
|
|
|
- " \"exhaustScalelb\": 1.997,\n" +
|
|
|
- " \"frameNo\": \"LHGCR1640E8037440\",\n" +
|
|
|
- " \"fuelType\": \"0\",\n" +
|
|
|
- " \"gearBoxtyPecode\": \"BS03\",\n" +
|
|
|
- " \"gearBoxtyPecodeName\": \"BS03-CVT\",\n" +
|
|
|
- " \"idValidDate\": \"2044-02-17\",\n" +
|
|
|
- " \"identiFication\": 1,\n" +
|
|
|
- " \"identify\": \"1\",\n" +
|
|
|
- " \"idvalidStartDate\": \"2024-02-17\",\n" +
|
|
|
- " \"licenseCategory\": \"K33\",\n" +
|
|
|
- " \"licenseColorCode\": \"01\",\n" +
|
|
|
- " \"licenseKindCode\": \"01\",\n" +
|
|
|
- " \"licenseKindCodeNition\": \"01\",\n" +
|
|
|
- " \"licenseNo\": \"晋A345G0\",\n" +
|
|
|
- " \"licenseNoRecogNition\": \"晋A345G0\",\n" +
|
|
|
- " \"loanVehicleFlag\": \"0\",\n" +
|
|
|
- " \"lossCondition\": \"山西省\",\n" +
|
|
|
- " \"lossConditionCode\": \"Z278230500010001\",\n" +
|
|
|
- " \"madeFactory\": \"广汽本田汽车有限公司\",\n" +
|
|
|
- " \"maincarKindCode\": \"A\",\n" +
|
|
|
- " \"maincarKindCodeNition\": \"A\",\n" +
|
|
|
- " \"makeDate\": \"\",\n" +
|
|
|
- " \"modelCode\": \"BGQEYHUC0008\",\n" +
|
|
|
- " \"modelCodeOld\": \"BTAALD0103\",\n" +
|
|
|
- " \"modelName\": \"雅阁HG7205AAC4轿车\",\n" +
|
|
|
- " \"modelNameRecogNition\": \"\",\n" +
|
|
|
- " \"natureOfUse\": 1,\n" +
|
|
|
- " \"newCaRegistration\": \"1\",\n" +
|
|
|
- " \"newDeviceFlag\": \"0\",\n" +
|
|
|
- " \"newEnergyFlag\": \"0\",\n" +
|
|
|
- " \"newFuelModel\": \"0\",\n" +
|
|
|
- " \"newFuelModelName\": \"正常缴税\",\n" +
|
|
|
- " \"noticeType\": \"HG7205AAC4\",\n" +
|
|
|
- " \"ocr_invoice_flag\": \"0\",\n" +
|
|
|
- " \"ownerAddress\": \"山西省清徐县清源镇六合村北大街34号\",\n" +
|
|
|
- " \"ownerAreas\": \"山西省太原市清徐县\",\n" +
|
|
|
- " \"ownerCityName\": \"太原市\",\n" +
|
|
|
- " \"ownerPostName\": \"清徐县\",\n" +
|
|
|
- " \"ownerProvinceName\": \"山西省\",\n" +
|
|
|
- " \"ownersAddress\": \"山西省清徐县清源镇六合村北大街34号\",\n" +
|
|
|
- " \"postCode\": \"140100\",\n" +
|
|
|
- " \"power\": \"114\",\n" +
|
|
|
- " \"powerLB\": 1.997,\n" +
|
|
|
- " \"powertypecode\": \"D1\",\n" +
|
|
|
- " \"productType\": \"0101\",\n" +
|
|
|
- " \"proposalNo\": \"\",\n" +
|
|
|
- " \"purchasePrice\": \"149800\",\n" +
|
|
|
- " \"pureElectricBatteryType\": \"11\",\n" +
|
|
|
- " \"pureRiskPremium\": \"1\",\n" +
|
|
|
- " \"rateCode\": \"20\",\n" +
|
|
|
- " \"relationShip\": \"1\",\n" +
|
|
|
- " \"restricFlag\": \"\",\n" +
|
|
|
- " \"riskTypeCode\": \"0\",\n" +
|
|
|
- " \"riskTypeCodeName\": \"0-正常车型\",\n" +
|
|
|
- " \"riskTypeName\": \"正常车型\",\n" +
|
|
|
- " \"seatCount\": \"5\",\n" +
|
|
|
- " \"seatCountlb\": 5,\n" +
|
|
|
- " \"sex\": \"1\",\n" +
|
|
|
- " \"sexRecogNition\": \"1\",\n" +
|
|
|
- " \"speed\": \"200\",\n" +
|
|
|
- " \"stopFlagCode\": \"1\",\n" +
|
|
|
- " \"stopFlagCodeName\": \"1-停产\",\n" +
|
|
|
- " \"termsSystem\": \"04\",\n" +
|
|
|
- " \"tonCount\": \"0\",\n" +
|
|
|
- " \"tonCountlb\": \"0\",\n" +
|
|
|
- " \"tractionTonCount\": \"\",\n" +
|
|
|
- " \"transmissionttype\": \"CVT\",\n" +
|
|
|
- " \"useNatureCode\": \"8A\",\n" +
|
|
|
- " \"useNatureCodeNition\": \"8A\",\n" +
|
|
|
- " \"useNatureCodeNitionNew\": \"\",\n" +
|
|
|
- " \"useYears\": 11,\n" +
|
|
|
- " \"vehicleBrand\": \"雅阁HG7205AAC4轿车\",\n" +
|
|
|
- " \"vehicleClassNewCode\": \"JC04\",\n" +
|
|
|
- " \"vehicleClassNewCodeName\": \"JC04-中型轿车(B)\",\n" +
|
|
|
- " \"vehicleClassNewName\": \"中型轿车(B)\",\n" +
|
|
|
- " \"vehicleCode\": \"BGQEYHUC000871A1\",\n" +
|
|
|
- " \"vehicleSize\": \"4930*1845*1470\",\n" +
|
|
|
- " \"vinClick\": \"1\",\n" +
|
|
|
- " \"vinModel\": \"BTAALD0103\",\n" +
|
|
|
- " \"vinNo\": \"LHGCR1640E8037440\",\n" +
|
|
|
- " \"vinNoRecogNition\": \"LHGCR1640E8037440\",\n" +
|
|
|
- " \"ymModelSegmentation\": \"\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"prpTmain\": {\n" +
|
|
|
- " \"answer\": \"\",\n" +
|
|
|
- " \"biAnswer\": \"\",\n" +
|
|
|
- " \"disCount\": 1.0,\n" +
|
|
|
- " \"endDate\": \"2027-05-30\",\n" +
|
|
|
- " \"endDate0507\": \"2027-05-12T16:00:00.000Z\",\n" +
|
|
|
- " \"endDate0507t1\": \"2027-05-12T16:00:00.000Z\",\n" +
|
|
|
- " \"endHour\": 24,\n" +
|
|
|
- " \"endHour0507\": 24,\n" +
|
|
|
- " \"endMinute\": 0,\n" +
|
|
|
- " \"endMinute0507\": 0,\n" +
|
|
|
- " \"endMinute0507t1\": 0,\n" +
|
|
|
- " \"expectDiscount\": \"\",\n" +
|
|
|
- " \"feeandDiscountFlag\": \"0\",\n" +
|
|
|
- " \"immeValiFlag\": \"\",\n" +
|
|
|
- " \"immeValiFlag0507\": 0,\n" +
|
|
|
- " \"immeValiFlag0507t1\": 0,\n" +
|
|
|
- " \"immeValidEndDate\": \"\",\n" +
|
|
|
- " \"immeValidEndDate0507\": \"2027-05-12T16:00:00.000Z\",\n" +
|
|
|
- " \"immeValidEndDate0507t1\": \"2027-05-12T16:00:00.000Z\",\n" +
|
|
|
- " \"immeValidStartDate\": \"\",\n" +
|
|
|
- " \"immeValidStartDate0507\": \"2026-05-13T16:00:00.000Z\",\n" +
|
|
|
- " \"immeValidStartDate0507t1\": \"2026-05-13T16:00:00.000Z\",\n" +
|
|
|
- " \"inputDate\": \"2026-05-13\",\n" +
|
|
|
- " \"period0530\": 30,\n" +
|
|
|
- " \"renewalFlag\": \"\",\n" +
|
|
|
- " \"saleChange\": \"0\",\n" +
|
|
|
- " \"signDate\": \"2026-05-13\",\n" +
|
|
|
- " \"signDiscount\": 0.0,\n" +
|
|
|
- " \"startDate\": \"2026-05-31\",\n" +
|
|
|
- " \"startDate0507\": \"2026-05-13T16:00:00.000Z\",\n" +
|
|
|
- " \"startDate0507t1\": \"2026-05-13T16:00:00.000Z\",\n" +
|
|
|
- " \"startDateFlag\": 0,\n" +
|
|
|
- " \"startDateFlag0507\": 0,\n" +
|
|
|
- " \"startDateFlag0507t1\": 0,\n" +
|
|
|
- " \"startHour\": 0,\n" +
|
|
|
- " \"startHour0507\": 0,\n" +
|
|
|
- " \"startMinute\": 0,\n" +
|
|
|
- " \"startMinute0507\": 0,\n" +
|
|
|
- " \"startMinute0507t1\": 0,\n" +
|
|
|
- " \"sumLowerRate\": \"\",\n" +
|
|
|
- " \"sumPremium\": \"\",\n" +
|
|
|
- " \"sumnoTaxPremium\": 896.23\n" +
|
|
|
- " },\n" +
|
|
|
- " \"prpTmainRate\": {\n" +
|
|
|
- " \"accruedexpenses\": \"0\",\n" +
|
|
|
- " \"actuarialCoef\": \"交强险 1.2019;商业险 1.2019;\",\n" +
|
|
|
- " \"actuarialRuleCode\": \"交强险 I99A12511001,I03A12512007,I03A12504020,I03A12509002,I03A12512001;商业险 I99A12511001,I03A12512007,I03A12504020,I03A12509002,I03A12512001;\",\n" +
|
|
|
- " \"attribute1\": \"0.00\",\n" +
|
|
|
- " \"attribute2\": \"0.00\",\n" +
|
|
|
- " \"attribute3\": \"0.00\",\n" +
|
|
|
- " \"attribute4\": \"0.00\",\n" +
|
|
|
- " \"attribute5\": \"\",\n" +
|
|
|
- " \"billcomacquisitionfeerate\": 0,\n" +
|
|
|
- " \"billcomallowance\": 0,\n" +
|
|
|
- " \"billcomotherfeerate\": 0,\n" +
|
|
|
- " \"billcomtransfeerate\": 0,\n" +
|
|
|
- " \"chdConsistent\": \"-2\",\n" +
|
|
|
- " \"chdTranche\": \"-2\",\n" +
|
|
|
- " \"classcode\": \"05\",\n" +
|
|
|
- " \"coefficient1\": 0,\n" +
|
|
|
- " \"coefficient10\": 0,\n" +
|
|
|
- " \"coefficient11\": 0,\n" +
|
|
|
- " \"coefficient2\": 0,\n" +
|
|
|
- " \"coefficient3\": 0,\n" +
|
|
|
- " \"coefficient4\": 0,\n" +
|
|
|
- " \"coefficient5\": 0,\n" +
|
|
|
- " \"coefficient6\": 0,\n" +
|
|
|
- " \"coefficient7\": 0,\n" +
|
|
|
- " \"coefficient8\": 0,\n" +
|
|
|
- " \"coefficient9\": 0,\n" +
|
|
|
- " \"dispersion\": \"0\",\n" +
|
|
|
- " \"evScore\": \"-2\",\n" +
|
|
|
- " \"highRiskCar\": \"\",\n" +
|
|
|
- " \"isFromApps\": \"0\",\n" +
|
|
|
- " \"mileage12\": \"-2\",\n" +
|
|
|
- " \"mileage24\": \"-2\",\n" +
|
|
|
- " \"mileage6\": \"-2\",\n" +
|
|
|
- " \"mutualback\": \"0\",\n" +
|
|
|
- " \"natrnk\": \"-2\",\n" +
|
|
|
- " \"qjhScore\": \"-2\",\n" +
|
|
|
- " \"riskcode\": \"0500\",\n" +
|
|
|
- " \"score12sd\": \"-2\",\n" +
|
|
|
- " \"tempLateFlag\": \"1\",\n" +
|
|
|
- " \"totalAttribute\": 0.0,\n" +
|
|
|
- " \"totalcost\": 0,\n" +
|
|
|
- " \"vhlScore\": \"-2\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"prpTrenewal\": [],\n" +
|
|
|
- " \"prptengageList\": [],\n" +
|
|
|
- " \"prptitemkindList\": [\n" +
|
|
|
- " {\n" +
|
|
|
- " \"adjustRate\": \"\",\n" +
|
|
|
- " \"amount\": \"2000000\",\n" +
|
|
|
- " \"basePremium\": \"\",\n" +
|
|
|
- " \"benchMarkPremium\": \"\",\n" +
|
|
|
- " \"calculateFlag\": \"Y\",\n" +
|
|
|
- " \"channelrate\": \"\",\n" +
|
|
|
- " \"checked\": 1,\n" +
|
|
|
- " \"currency\": \"CNY\",\n" +
|
|
|
- " \"deductible\": \"\",\n" +
|
|
|
- " \"deductibleRate\": \"2000000\",\n" +
|
|
|
- " \"discount\": \"1\",\n" +
|
|
|
- " \"endDate\": \"2027-05-30\",\n" +
|
|
|
- " \"endHour\": 24,\n" +
|
|
|
- " \"endMinute\": 0,\n" +
|
|
|
- " \"familyName\": \"\",\n" +
|
|
|
- " \"flag\": \" 1 1\",\n" +
|
|
|
- " \"insurePlan\": \"\",\n" +
|
|
|
- " \"isDeductible\": 0,\n" +
|
|
|
- " \"isMedical\": 1,\n" +
|
|
|
- " \"isMental\": 0,\n" +
|
|
|
- " \"itemCode\": \"1\",\n" +
|
|
|
- " \"itemDetailName\": \"车辆\",\n" +
|
|
|
- " \"itemKindNo\": \"33\",\n" +
|
|
|
- " \"itemNo\": 1,\n" +
|
|
|
- " \"kindCode\": \"20B\",\n" +
|
|
|
- " \"kindName\": \"机动车第三者责任保险\",\n" +
|
|
|
- " \"mainKindFlag\": \"M\",\n" +
|
|
|
- " \"modeCode\": \"\",\n" +
|
|
|
- " \"modeName\": \"\",\n" +
|
|
|
- " \"model\": \"\",\n" +
|
|
|
- " \"noTaxPremium\": \"\",\n" +
|
|
|
- " \"premium\": \"\",\n" +
|
|
|
- " \"proposalNo\": \"\",\n" +
|
|
|
- " \"rate\": \"\",\n" +
|
|
|
- " \"ratePeriod\": 0,\n" +
|
|
|
- " \"rationType\": \"\",\n" +
|
|
|
- " \"riskCode\": \"0518\",\n" +
|
|
|
- " \"shortRate\": \"100.0000\",\n" +
|
|
|
- " \"shortRateFlag\": \"2\",\n" +
|
|
|
- " \"standardPremuim\": \"\",\n" +
|
|
|
- " \"startDate\": \"2026-05-31\",\n" +
|
|
|
- " \"startHour\": 0,\n" +
|
|
|
- " \"startMinute\": 0,\n" +
|
|
|
- " \"taxFee\": \"\",\n" +
|
|
|
- " \"taxFlag\": \"\",\n" +
|
|
|
- " \"taxRate\": \"0.06\",\n" +
|
|
|
- " \"totalLossRate\": 9.0E-4,\n" +
|
|
|
- " \"unit\": \"\",\n" +
|
|
|
- " \"unitAmount\": \"2000000\",\n" +
|
|
|
- " \"value\": \"\"\n" +
|
|
|
- " },\n" +
|
|
|
- " {\n" +
|
|
|
- " \"adjustRate\": \"\",\n" +
|
|
|
- " \"amount\": \"10000\",\n" +
|
|
|
- " \"basePremium\": \"\",\n" +
|
|
|
- " \"benchMarkPremium\": \"\",\n" +
|
|
|
- " \"calculateFlag\": \"Y\",\n" +
|
|
|
- " \"channelrate\": \"\",\n" +
|
|
|
- " \"checked\": 1,\n" +
|
|
|
- " \"currency\": \"CNY\",\n" +
|
|
|
- " \"deductible\": \"\",\n" +
|
|
|
- " \"deductibleRate\": \"10000\",\n" +
|
|
|
- " \"discount\": \"1\",\n" +
|
|
|
- " \"endDate\": \"2027-05-30\",\n" +
|
|
|
- " \"endHour\": 24,\n" +
|
|
|
- " \"endMinute\": 0,\n" +
|
|
|
- " \"familyName\": \"\",\n" +
|
|
|
- " \"flag\": \" 1 1\",\n" +
|
|
|
- " \"insurePlan\": \"\",\n" +
|
|
|
- " \"isDeductible\": 0,\n" +
|
|
|
- " \"isMedical\": 1,\n" +
|
|
|
- " \"isMental\": 0,\n" +
|
|
|
- " \"itemCode\": \"1\",\n" +
|
|
|
- " \"itemDetailName\": \"车辆\",\n" +
|
|
|
- " \"itemKindNo\": \"35\",\n" +
|
|
|
- " \"itemNo\": 1,\n" +
|
|
|
- " \"kindCode\": \"20D3\",\n" +
|
|
|
- " \"kindName\": \"机动车车上人员责任保险(驾驶员)\",\n" +
|
|
|
- " \"mainKindFlag\": \"M\",\n" +
|
|
|
- " \"modeCode\": \"\",\n" +
|
|
|
- " \"modeName\": \"\",\n" +
|
|
|
- " \"model\": \"\",\n" +
|
|
|
- " \"noTaxPremium\": \"\",\n" +
|
|
|
- " \"premium\": \"\",\n" +
|
|
|
- " \"proposalNo\": \"\",\n" +
|
|
|
- " \"rate\": \"\",\n" +
|
|
|
- " \"ratePeriod\": 0,\n" +
|
|
|
- " \"rationType\": \"\",\n" +
|
|
|
- " \"riskCode\": \"0518\",\n" +
|
|
|
- " \"shortRate\": \"100.0000\",\n" +
|
|
|
- " \"shortRateFlag\": \"2\",\n" +
|
|
|
- " \"standardPremuim\": \"\",\n" +
|
|
|
- " \"startDate\": \"2026-05-31\",\n" +
|
|
|
- " \"startHour\": 0,\n" +
|
|
|
- " \"startMinute\": 0,\n" +
|
|
|
- " \"taxFee\": \"\",\n" +
|
|
|
- " \"taxFlag\": \"\",\n" +
|
|
|
- " \"taxRate\": \"0.06\",\n" +
|
|
|
- " \"totalLossRate\": 9.0E-4,\n" +
|
|
|
- " \"unit\": \"\",\n" +
|
|
|
- " \"unitAmount\": \"10000\",\n" +
|
|
|
- " \"value\": \"\"\n" +
|
|
|
- " },\n" +
|
|
|
- " {\n" +
|
|
|
- " \"adjustRate\": \"\",\n" +
|
|
|
- " \"amount\": \"10000\",\n" +
|
|
|
- " \"basePremium\": \"\",\n" +
|
|
|
- " \"benchMarkPremium\": \"\",\n" +
|
|
|
- " \"calculateFlag\": \"Y\",\n" +
|
|
|
- " \"channelrate\": \"\",\n" +
|
|
|
- " \"checked\": 1,\n" +
|
|
|
- " \"currency\": \"CNY\",\n" +
|
|
|
- " \"deductible\": \"\",\n" +
|
|
|
- " \"deductibleRate\": \"10000\",\n" +
|
|
|
- " \"discount\": \"1\",\n" +
|
|
|
- " \"endDate\": \"2027-05-30\",\n" +
|
|
|
- " \"endHour\": 24,\n" +
|
|
|
- " \"endMinute\": 0,\n" +
|
|
|
- " \"familyName\": \"\",\n" +
|
|
|
- " \"flag\": \" 1 1\",\n" +
|
|
|
- " \"insurePlan\": \"\",\n" +
|
|
|
- " \"isDeductible\": 0,\n" +
|
|
|
- " \"isMedical\": 1,\n" +
|
|
|
- " \"isMental\": 0,\n" +
|
|
|
- " \"itemCode\": \"1\",\n" +
|
|
|
- " \"itemDetailName\": \"车辆\",\n" +
|
|
|
- " \"itemKindNo\": \"37\",\n" +
|
|
|
- " \"itemNo\": 1,\n" +
|
|
|
- " \"kindCode\": \"20D4\",\n" +
|
|
|
- " \"kindName\": \"机动车车上人员责任保险(乘客)\",\n" +
|
|
|
- " \"mainKindFlag\": \"M\",\n" +
|
|
|
- " \"modeCode\": \"\",\n" +
|
|
|
- " \"modeName\": \"\",\n" +
|
|
|
- " \"model\": \"\",\n" +
|
|
|
- " \"noTaxPremium\": \"\",\n" +
|
|
|
- " \"premium\": \"\",\n" +
|
|
|
- " \"proposalNo\": \"\",\n" +
|
|
|
- " \"rate\": \"\",\n" +
|
|
|
- " \"ratePeriod\": 0,\n" +
|
|
|
- " \"rationType\": \"\",\n" +
|
|
|
- " \"riskCode\": \"0518\",\n" +
|
|
|
- " \"shortRate\": \"100.0000\",\n" +
|
|
|
- " \"shortRateFlag\": \"2\",\n" +
|
|
|
- " \"standardPremuim\": \"\",\n" +
|
|
|
- " \"startDate\": \"2026-05-31\",\n" +
|
|
|
- " \"startHour\": 0,\n" +
|
|
|
- " \"startMinute\": 0,\n" +
|
|
|
- " \"taxFee\": \"\",\n" +
|
|
|
- " \"taxFlag\": \"\",\n" +
|
|
|
- " \"taxRate\": \"0.06\",\n" +
|
|
|
- " \"totalLossRate\": 9.0E-4,\n" +
|
|
|
- " \"unit\": \"\",\n" +
|
|
|
- " \"unitAmount\": \"10000\",\n" +
|
|
|
- " \"value\": \"\"\n" +
|
|
|
- " },\n" +
|
|
|
- " {\n" +
|
|
|
- " \"adjustRate\": \"\",\n" +
|
|
|
- " \"amount\": \"100000\",\n" +
|
|
|
- " \"basePremium\": \"\",\n" +
|
|
|
- " \"benchMarkPremium\": \"\",\n" +
|
|
|
- " \"calculateFlag\": \"Y\",\n" +
|
|
|
- " \"channelrate\": \"\",\n" +
|
|
|
- " \"checked\": 1,\n" +
|
|
|
- " \"currency\": \"CNY\",\n" +
|
|
|
- " \"deductible\": \"\",\n" +
|
|
|
- " \"deductibleRate\": \"100000\",\n" +
|
|
|
- " \"discount\": \"1\",\n" +
|
|
|
- " \"endDate\": \"2027-05-30\",\n" +
|
|
|
- " \"endHour\": 24,\n" +
|
|
|
- " \"endMinute\": 0,\n" +
|
|
|
- " \"familyName\": \"\",\n" +
|
|
|
- " \"flag\": \" 2 0\",\n" +
|
|
|
- " \"insurePlan\": \"\",\n" +
|
|
|
- " \"isDeductible\": 0,\n" +
|
|
|
- " \"isMedical\": 1,\n" +
|
|
|
- " \"isMental\": 0,\n" +
|
|
|
- " \"itemCode\": \"1\",\n" +
|
|
|
- " \"itemDetailName\": \"车辆\",\n" +
|
|
|
- " \"itemKindNo\": \"54\",\n" +
|
|
|
- " \"itemNo\": 1,\n" +
|
|
|
- " \"kindCode\": \"20Y\",\n" +
|
|
|
- " \"kindName\": \"附加医保外医疗费用责任险-三者险\",\n" +
|
|
|
- " \"mainKindFlag\": \"S\",\n" +
|
|
|
- " \"modeCode\": \"\",\n" +
|
|
|
- " \"modeName\": \"\",\n" +
|
|
|
- " \"model\": \"\",\n" +
|
|
|
- " \"noTaxPremium\": \"\",\n" +
|
|
|
- " \"premium\": \"\",\n" +
|
|
|
- " \"proposalNo\": \"\",\n" +
|
|
|
- " \"rate\": \"\",\n" +
|
|
|
- " \"ratePeriod\": 0,\n" +
|
|
|
- " \"rationType\": \"\",\n" +
|
|
|
- " \"riskCode\": \"0518\",\n" +
|
|
|
- " \"shortRate\": \"100.0000\",\n" +
|
|
|
- " \"shortRateFlag\": \"2\",\n" +
|
|
|
- " \"standardPremuim\": \"\",\n" +
|
|
|
- " \"startDate\": \"2026-05-31\",\n" +
|
|
|
- " \"startHour\": 0,\n" +
|
|
|
- " \"startMinute\": 0,\n" +
|
|
|
- " \"taxFee\": \"\",\n" +
|
|
|
- " \"taxFlag\": \"\",\n" +
|
|
|
- " \"taxRate\": \"0.06\",\n" +
|
|
|
- " \"totalLossRate\": 9.0E-4,\n" +
|
|
|
- " \"unit\": \"\",\n" +
|
|
|
- " \"unitAmount\": \"100000\",\n" +
|
|
|
- " \"value\": \"\"\n" +
|
|
|
- " },\n" +
|
|
|
- " {\n" +
|
|
|
- " \"adjustRate\": \"\",\n" +
|
|
|
- " \"amount\": \"2\",\n" +
|
|
|
- " \"basePremium\": \"\",\n" +
|
|
|
- " \"benchMarkPremium\": \"\",\n" +
|
|
|
- " \"calculateFlag\": \"Y\",\n" +
|
|
|
- " \"channelrate\": \"\",\n" +
|
|
|
- " \"checked\": 1,\n" +
|
|
|
- " \"currency\": \"CNY\",\n" +
|
|
|
- " \"deductible\": \"\",\n" +
|
|
|
- " \"deductibleRate\": \"2\",\n" +
|
|
|
- " \"discount\": \"1\",\n" +
|
|
|
- " \"endDate\": \"2027-05-30\",\n" +
|
|
|
- " \"endHour\": 24,\n" +
|
|
|
- " \"endMinute\": 0,\n" +
|
|
|
- " \"familyName\": \"\",\n" +
|
|
|
- " \"flag\": \" 2 1\",\n" +
|
|
|
- " \"insurePlan\": \"\",\n" +
|
|
|
- " \"isDeductible\": 0,\n" +
|
|
|
- " \"isMedical\": 1,\n" +
|
|
|
- " \"isMental\": 0,\n" +
|
|
|
- " \"itemCode\": \"1\",\n" +
|
|
|
- " \"itemDetailName\": \"车辆\",\n" +
|
|
|
- " \"itemKindNo\": \"57\",\n" +
|
|
|
- " \"itemNo\": 1,\n" +
|
|
|
- " \"kindCode\": \"20Z1\",\n" +
|
|
|
- " \"kindName\": \"道路救援服务特约条款\",\n" +
|
|
|
- " \"mainKindFlag\": \"S\",\n" +
|
|
|
- " \"modeCode\": \"\",\n" +
|
|
|
- " \"modeName\": \"\",\n" +
|
|
|
- " \"model\": \"\",\n" +
|
|
|
- " \"noTaxPremium\": \"\",\n" +
|
|
|
- " \"premium\": \"\",\n" +
|
|
|
- " \"proposalNo\": \"\",\n" +
|
|
|
- " \"rate\": \"\",\n" +
|
|
|
- " \"ratePeriod\": 0,\n" +
|
|
|
- " \"rationType\": \"\",\n" +
|
|
|
- " \"riskCode\": \"0518\",\n" +
|
|
|
- " \"shortRate\": \"100.0000\",\n" +
|
|
|
- " \"shortRateFlag\": \"2\",\n" +
|
|
|
- " \"standardPremuim\": \"\",\n" +
|
|
|
- " \"startDate\": \"2026-05-31\",\n" +
|
|
|
- " \"startHour\": 0,\n" +
|
|
|
- " \"startMinute\": 0,\n" +
|
|
|
- " \"taxFee\": \"\",\n" +
|
|
|
- " \"taxFlag\": \"\",\n" +
|
|
|
- " \"taxRate\": \"0.06\",\n" +
|
|
|
- " \"totalLossRate\": 9.0E-4,\n" +
|
|
|
- " \"unit\": \"\",\n" +
|
|
|
- " \"unitAmount\": \"2\",\n" +
|
|
|
- " \"value\": \"\"\n" +
|
|
|
- " },\n" +
|
|
|
- " {\n" +
|
|
|
- " \"adjustRate\": \"\",\n" +
|
|
|
- " \"amount\": \"2\",\n" +
|
|
|
- " \"basePremium\": \"\",\n" +
|
|
|
- " \"benchMarkPremium\": \"\",\n" +
|
|
|
- " \"calculateFlag\": \"Y\",\n" +
|
|
|
- " \"channelrate\": \"\",\n" +
|
|
|
- " \"checked\": 1,\n" +
|
|
|
- " \"currency\": \"CNY\",\n" +
|
|
|
- " \"deductible\": \"\",\n" +
|
|
|
- " \"deductibleRate\": \"2\",\n" +
|
|
|
- " \"discount\": \"1\",\n" +
|
|
|
- " \"endDate\": \"2027-05-30\",\n" +
|
|
|
- " \"endHour\": 24,\n" +
|
|
|
- " \"endMinute\": 0,\n" +
|
|
|
- " \"familyName\": \"\",\n" +
|
|
|
- " \"flag\": \" 2 1\",\n" +
|
|
|
- " \"insurePlan\": \"\",\n" +
|
|
|
- " \"isDeductible\": 0,\n" +
|
|
|
- " \"isMedical\": 1,\n" +
|
|
|
- " \"isMental\": 0,\n" +
|
|
|
- " \"itemCode\": \"1\",\n" +
|
|
|
- " \"itemDetailName\": \"车辆\",\n" +
|
|
|
- " \"itemKindNo\": \"58\",\n" +
|
|
|
- " \"itemNo\": 1,\n" +
|
|
|
- " \"kindCode\": \"20Z2\",\n" +
|
|
|
- " \"kindName\": \"车辆安全检测特约条款\",\n" +
|
|
|
- " \"mainKindFlag\": \"S\",\n" +
|
|
|
- " \"modeCode\": \"\",\n" +
|
|
|
- " \"modeName\": \"\",\n" +
|
|
|
- " \"model\": \"\",\n" +
|
|
|
- " \"noTaxPremium\": \"\",\n" +
|
|
|
- " \"premium\": \"\",\n" +
|
|
|
- " \"proposalNo\": \"\",\n" +
|
|
|
- " \"rate\": \"\",\n" +
|
|
|
- " \"ratePeriod\": 0,\n" +
|
|
|
- " \"rationType\": \"\",\n" +
|
|
|
- " \"riskCode\": \"0518\",\n" +
|
|
|
- " \"shortRate\": \"100.0000\",\n" +
|
|
|
- " \"shortRateFlag\": \"2\",\n" +
|
|
|
- " \"standardPremuim\": \"\",\n" +
|
|
|
- " \"startDate\": \"2026-05-31\",\n" +
|
|
|
- " \"startHour\": 0,\n" +
|
|
|
- " \"startMinute\": 0,\n" +
|
|
|
- " \"taxFee\": \"\",\n" +
|
|
|
- " \"taxFlag\": \"\",\n" +
|
|
|
- " \"taxRate\": \"0.06\",\n" +
|
|
|
- " \"totalLossRate\": 9.0E-4,\n" +
|
|
|
- " \"unit\": \"\",\n" +
|
|
|
- " \"unitAmount\": \"2\",\n" +
|
|
|
- " \"value\": \"\"\n" +
|
|
|
- " },\n" +
|
|
|
- " {\n" +
|
|
|
- " \"adjustRate\": \"\",\n" +
|
|
|
- " \"amount\": \"2\",\n" +
|
|
|
- " \"basePremium\": \"\",\n" +
|
|
|
- " \"benchMarkPremium\": \"\",\n" +
|
|
|
- " \"calculateFlag\": \"Y\",\n" +
|
|
|
- " \"channelrate\": \"\",\n" +
|
|
|
- " \"checked\": 1,\n" +
|
|
|
- " \"currency\": \"CNY\",\n" +
|
|
|
- " \"deductible\": \"\",\n" +
|
|
|
- " \"deductibleRate\": \"2\",\n" +
|
|
|
- " \"discount\": \"1\",\n" +
|
|
|
- " \"endDate\": \"2027-05-30\",\n" +
|
|
|
- " \"endHour\": 24,\n" +
|
|
|
- " \"endMinute\": 0,\n" +
|
|
|
- " \"familyName\": \"\",\n" +
|
|
|
- " \"flag\": \" 2 1\",\n" +
|
|
|
- " \"insurePlan\": \"\",\n" +
|
|
|
- " \"isDeductible\": 0,\n" +
|
|
|
- " \"isMedical\": 1,\n" +
|
|
|
- " \"isMental\": 0,\n" +
|
|
|
- " \"itemCode\": \"1\",\n" +
|
|
|
- " \"itemDetailName\": \"车辆\",\n" +
|
|
|
- " \"itemKindNo\": \"59\",\n" +
|
|
|
- " \"itemNo\": 1,\n" +
|
|
|
- " \"kindCode\": \"20Z3\",\n" +
|
|
|
- " \"kindName\": \"代为驾驶服务特约条款\",\n" +
|
|
|
- " \"mainKindFlag\": \"S\",\n" +
|
|
|
- " \"modeCode\": \"\",\n" +
|
|
|
- " \"modeName\": \"\",\n" +
|
|
|
- " \"model\": \"\",\n" +
|
|
|
- " \"noTaxPremium\": \"\",\n" +
|
|
|
- " \"premium\": \"\",\n" +
|
|
|
- " \"proposalNo\": \"\",\n" +
|
|
|
- " \"rate\": \"\",\n" +
|
|
|
- " \"ratePeriod\": 0,\n" +
|
|
|
- " \"rationType\": \"\",\n" +
|
|
|
- " \"riskCode\": \"0518\",\n" +
|
|
|
- " \"shortRate\": \"100.0000\",\n" +
|
|
|
- " \"shortRateFlag\": \"2\",\n" +
|
|
|
- " \"standardPremuim\": \"\",\n" +
|
|
|
- " \"startDate\": \"2026-05-31\",\n" +
|
|
|
- " \"startHour\": 0,\n" +
|
|
|
- " \"startMinute\": 0,\n" +
|
|
|
- " \"taxFee\": \"\",\n" +
|
|
|
- " \"taxFlag\": \"\",\n" +
|
|
|
- " \"taxRate\": \"0.06\",\n" +
|
|
|
- " \"totalLossRate\": 9.0E-4,\n" +
|
|
|
- " \"unit\": \"\",\n" +
|
|
|
- " \"unitAmount\": \"2\",\n" +
|
|
|
- " \"value\": \"\"\n" +
|
|
|
- " }\n" +
|
|
|
- " ],\n" +
|
|
|
- " \"queryExpensePowerOutputVo\": {},\n" +
|
|
|
- " \"shortRate\": \"100.00\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"ci\": {\n" +
|
|
|
- " \"blPrpTRealNameVerification\": [],\n" +
|
|
|
- " \"cICarshipTaxDemandSchema\": {},\n" +
|
|
|
- " \"calculateFlagCI\": \"1\",\n" +
|
|
|
- " \"carShipTaxInfoInit\": 1,\n" +
|
|
|
- " \"ciCarShipTaxQGDemandSchema\": {\n" +
|
|
|
- " \"annualTaxAmount\": \"360.0\",\n" +
|
|
|
- " \"annualTaxDue\": \"360.0\",\n" +
|
|
|
- " \"calcTaxFlag\": \"1\",\n" +
|
|
|
- " \"declareStatusIA\": \"0\",\n" +
|
|
|
- " \"deductionDueProportion\": \"0.0\",\n" +
|
|
|
- " \"demandNo\": \"01XDCX140026051888550279571118\",\n" +
|
|
|
- " \"exceedDaysCount\": \"0\",\n" +
|
|
|
- " \"overDue\": \"0.0\",\n" +
|
|
|
- " \"serialNo\": \"1\",\n" +
|
|
|
- " \"sumOverdue\": \"0.0\",\n" +
|
|
|
- " \"sumTax\": \"360.0\",\n" +
|
|
|
- " \"sumTaxDefault\": \"0.0\",\n" +
|
|
|
- " \"taxAmountFlag\": \"1\",\n" +
|
|
|
- " \"taxConditionCode\": \"1\",\n" +
|
|
|
- " \"taxDue\": \"360.0\",\n" +
|
|
|
- " \"taxEndDate\": \"2026-12-31\",\n" +
|
|
|
- " \"taxLocationCode\": \"140000\",\n" +
|
|
|
- " \"taxPayerIdentificationCode\": \"140121196207080534\",\n" +
|
|
|
- " \"taxPayerName\": \"韩云福\",\n" +
|
|
|
- " \"taxRegistryNumber\": \"91140100MA0KJ5L06P\",\n" +
|
|
|
- " \"taxStartDate\": \"2026-01-01\",\n" +
|
|
|
- " \"taxTermTypeCode\": \"08\",\n" +
|
|
|
- " \"taxType\": \"0\",\n" +
|
|
|
- " \"taxUnitTypeCode\": \"1\",\n" +
|
|
|
- " \"totalAmount\": \"360.0\",\n" +
|
|
|
- " \"unitRate\": \"360.0\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"ciInsureDemand\": {\n" +
|
|
|
- " \"amount\": \"200000\",\n" +
|
|
|
- " \"basePremium\": \"950.0\",\n" +
|
|
|
- " \"benchmarkPremium\": \"950.0\",\n" +
|
|
|
- " \"carOwner\": \"韩云福\",\n" +
|
|
|
- " \"checkCode\": \"\",\n" +
|
|
|
- " \"claimAdjustReason\": \"C4\",\n" +
|
|
|
- " \"claimCoeff\": \"0.0\",\n" +
|
|
|
- " \"comCode\": \"305002A0\",\n" +
|
|
|
- " \"demandNo\": \"\",\n" +
|
|
|
- " \"demandTime\": \"2026-05-12\",\n" +
|
|
|
- " \"endDate\": \"2027-05-30\",\n" +
|
|
|
- " \"errorCode\": \"\",\n" +
|
|
|
- " \"errorMessageGo\": \"成功\",\n" +
|
|
|
- " \"frameNo\": \"LHGCR1640E8037440\",\n" +
|
|
|
- " \"lastBillDate\": \"20250530\",\n" +
|
|
|
- " \"lastYearEndDate\": \"2026-05-31\",\n" +
|
|
|
- " \"lastYearStartDate\": \"2025-05-31\",\n" +
|
|
|
- " \"licenseNo\": \"晋A345G0\",\n" +
|
|
|
- " \"operatorCode\": \"W3000399\",\n" +
|
|
|
- " \"peccancyCoeff\": \"0.0\",\n" +
|
|
|
- " \"premium\": \"950.0\",\n" +
|
|
|
- " \"reinsureFlag\": \"0\",\n" +
|
|
|
- " \"renewalFlag\": \"非重复投保\",\n" +
|
|
|
- " \"riskCode\": \"0507\",\n" +
|
|
|
- " \"startDate\": \"2026-05-31\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"ciInsureDemandLoss\": [],\n" +
|
|
|
- " \"ciInsureDemandPay\": [\n" +
|
|
|
- " {\n" +
|
|
|
- " \"accidentDeathFlag\": \"0\",\n" +
|
|
|
- " \"caseID\": \"\",\n" +
|
|
|
- " \"claimNotificationNo\": \"\",\n" +
|
|
|
- " \"claimRegistrationNo\": \"880326202614002211\",\n" +
|
|
|
- " \"compensateNo\": \"50AICS140026032213046613845808\",\n" +
|
|
|
- " \"demandNo\": \"01XDCX140026051888550279571118\",\n" +
|
|
|
- " \"effectiveDate\": \"\",\n" +
|
|
|
- " \"endCaseTime\": \"2026-03-10 08:51\",\n" +
|
|
|
- " \"expireDate\": \"\",\n" +
|
|
|
- " \"flag\": \"\",\n" +
|
|
|
- " \"insurerArea\": \"\",\n" +
|
|
|
- " \"kindCode\": \"\",\n" +
|
|
|
- " \"lossFee\": \"2000.0\",\n" +
|
|
|
- " \"lossTime\": \"2026-03-09 16:53\",\n" +
|
|
|
- " \"optionType\": \"\",\n" +
|
|
|
- " \"payCompany\": \"AICS\",\n" +
|
|
|
- " \"payType\": \"\",\n" +
|
|
|
- " \"personPayType\": \"\",\n" +
|
|
|
- " \"policyNo\": \"114B7032620250026994\",\n" +
|
|
|
- " \"remark\": \"\",\n" +
|
|
|
- " \"serialNo\": \"1\",\n" +
|
|
|
- " \"totalAmount\": \"2000.0\"\n" +
|
|
|
- " }\n" +
|
|
|
- " ],\n" +
|
|
|
- " \"ciInsureDemandWarningClaim\": [],\n" +
|
|
|
- " \"ciInsureValid\": {},\n" +
|
|
|
- " \"duplicateInsuranceItemsSchema\": {},\n" +
|
|
|
- " \"image\": {\n" +
|
|
|
- " \"changingThisBreaksApplicationSecurity\": \"data:image/png;base64,\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"inputRisk\": 1,\n" +
|
|
|
- " \"inputRisk0507\": 1,\n" +
|
|
|
- " \"inputRisk0507t1\": 0,\n" +
|
|
|
- " \"prpDclause\": [],\n" +
|
|
|
- " \"prpDclauseRule\": [],\n" +
|
|
|
- " \"prpTChannel\": {},\n" +
|
|
|
- " \"prpTLastCarShipTax\": {},\n" +
|
|
|
- " \"prpTcarshipTax\": {\n" +
|
|
|
- " \"calLateFeeFlag\": \"\",\n" +
|
|
|
- " \"calPayBalanceFeeFlag\": \"\",\n" +
|
|
|
- " \"calculateMode\": \"1\",\n" +
|
|
|
- " \"completeKerbMass\": 0,\n" +
|
|
|
- " \"extendChar2\": \"K33\",\n" +
|
|
|
- " \"sumPayTax\": \"\",\n" +
|
|
|
- " \"taxItemCode\": \"A\",\n" +
|
|
|
- " \"taxItemDetailCode\": \"A1\",\n" +
|
|
|
- " \"taxItemDetailName\": \"小型客车\",\n" +
|
|
|
- " \"taxItemName\": \"载客汽车\",\n" +
|
|
|
- " \"taxRelifFlag\": \"1\",\n" +
|
|
|
- " \"taxUnit\": \"1\",\n" +
|
|
|
- " \"taxpayerIdentifier\": \"140121196207080534\",\n" +
|
|
|
- " \"taxpayerName\": \"韩云福\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"prpTitemCar\": {\n" +
|
|
|
- " \"IDValidDate\": \"2044-02-17\",\n" +
|
|
|
- " \"absFlag\": \"有\",\n" +
|
|
|
- " \"actualValue\": \"29960.0\",\n" +
|
|
|
- " \"addressRevise\": \"0\",\n" +
|
|
|
- " \"basePureRiskPremium\": \"1290.596000\",\n" +
|
|
|
- " \"biChgOwnerFlag\": \"0\",\n" +
|
|
|
- " \"birthday\": \"1962-07-08\",\n" +
|
|
|
- " \"birthdayRecogNition\": \"1962-07-08\",\n" +
|
|
|
- " \"brandCode\": \"BTAALD0103\",\n" +
|
|
|
- " \"brandName\": \"雅阁HG7205AAC4轿车\",\n" +
|
|
|
- " \"carAddress\": \"山西省清徐县清源镇六合村北大街34号\",\n" +
|
|
|
- " \"carAreas\": \"山西省太原市清徐县\",\n" +
|
|
|
- " \"carCertificateDate\": \"\",\n" +
|
|
|
- " \"carCertificateType\": \"\",\n" +
|
|
|
- " \"carCityName\": \"太原市\",\n" +
|
|
|
- " \"carIdentifyType\": \"01\",\n" +
|
|
|
- " \"carInsuredRelation\": \"1\",\n" +
|
|
|
- " \"carKindCode\": \"A0\",\n" +
|
|
|
- " \"carKindCodeDesc\": \"\",\n" +
|
|
|
- " \"carKindCodeNition\": \"A0\",\n" +
|
|
|
- " \"carName\": \"雅阁HG7205AAC4 舒适版\",\n" +
|
|
|
- " \"carOwner\": \"韩云福\",\n" +
|
|
|
- " \"carOwnerAgeW\": \"63\",\n" +
|
|
|
- " \"carOwnerIdentifyNumber\": \"140121196207080534\",\n" +
|
|
|
- " \"carOwnerIdentifyNumberRecogNition\": \"140121196207080534\",\n" +
|
|
|
- " \"carOwnerIdentifyType\": \"01\",\n" +
|
|
|
- " \"carOwnerIdentifyTypeSides\": \"back\",\n" +
|
|
|
- " \"carOwnerNature\": \"0\",\n" +
|
|
|
- " \"carOwnerRecogNition\": \"韩云福\",\n" +
|
|
|
- " \"carPostCode\": \"140100\",\n" +
|
|
|
- " \"carProvinceName\": \"山西省\",\n" +
|
|
|
- " \"carTypeCode\": \"1\",\n" +
|
|
|
- " \"carUsage\": \"雅阁HG7205AAC4轿车\",\n" +
|
|
|
- " \"carbrand\": \"雅阁(ACCORD)牌\",\n" +
|
|
|
- " \"certifiCateDate\": \"\",\n" +
|
|
|
- " \"chargingpostFlag\": \"0\",\n" +
|
|
|
- " \"chgOwnerDate\": \"2014-09-03\",\n" +
|
|
|
- " \"chgOwnerDateRecogNition\": \"2014-09-03\",\n" +
|
|
|
- " \"chgOwnerFlag\": \"0\",\n" +
|
|
|
- " \"ciChgOwnerFlag\": \"0\",\n" +
|
|
|
- " \"clauseType\": \"F54\",\n" +
|
|
|
- " \"clauseTypeSystem\": \"04\",\n" +
|
|
|
- " \"colorCode\": \"03\",\n" +
|
|
|
- " \"comlossCondition\": \"太原市\",\n" +
|
|
|
- " \"completeKerbMass\": \"1495\",\n" +
|
|
|
- " \"compromisePrice\": \"29960.0\",\n" +
|
|
|
- " \"countryNature\": \"B\",\n" +
|
|
|
- " \"engineNo\": \"1237456\",\n" +
|
|
|
- " \"engineNoRecogNition\": \"1237456\",\n" +
|
|
|
- " \"enrollDate\": \"2014-09-03\",\n" +
|
|
|
- " \"enrollDateValueStatus\": 1,\n" +
|
|
|
- " \"enrollDateoRecogNition\": \"2014-09-03\",\n" +
|
|
|
- " \"exhaustScale\": \"1.997\",\n" +
|
|
|
- " \"exhaustScalelb\": 1.997,\n" +
|
|
|
- " \"frameNo\": \"LHGCR1640E8037440\",\n" +
|
|
|
- " \"fuelType\": \"0\",\n" +
|
|
|
- " \"gearBoxtyPecode\": \"BS03\",\n" +
|
|
|
- " \"gearBoxtyPecodeName\": \"BS03-CVT\",\n" +
|
|
|
- " \"idValidDate\": \"2044-02-17\",\n" +
|
|
|
- " \"identiFication\": 1,\n" +
|
|
|
- " \"identify\": \"1\",\n" +
|
|
|
- " \"idvalidStartDate\": \"2024-02-17\",\n" +
|
|
|
- " \"licenseCategory\": \"K33\",\n" +
|
|
|
- " \"licenseColorCode\": \"01\",\n" +
|
|
|
- " \"licenseKindCode\": \"01\",\n" +
|
|
|
- " \"licenseKindCodeNition\": \"01\",\n" +
|
|
|
- " \"licenseNo\": \"晋A345G0\",\n" +
|
|
|
- " \"licenseNoRecogNition\": \"晋A345G0\",\n" +
|
|
|
- " \"loanVehicleFlag\": \"0\",\n" +
|
|
|
- " \"lossCondition\": \"山西省\",\n" +
|
|
|
- " \"lossConditionCode\": \"Z278230500010001\",\n" +
|
|
|
- " \"madeFactory\": \"广汽本田汽车有限公司\",\n" +
|
|
|
- " \"maincarKindCode\": \"A\",\n" +
|
|
|
- " \"maincarKindCodeNition\": \"A\",\n" +
|
|
|
- " \"makeDate\": \"\",\n" +
|
|
|
- " \"modelCode\": \"BGQEYHUC0008\",\n" +
|
|
|
- " \"modelCodeOld\": \"BTAALD0103\",\n" +
|
|
|
- " \"modelName\": \"雅阁HG7205AAC4轿车\",\n" +
|
|
|
- " \"modelNameRecogNition\": \"\",\n" +
|
|
|
- " \"natureOfUse\": 1,\n" +
|
|
|
- " \"newCaRegistration\": \"1\",\n" +
|
|
|
- " \"newDeviceFlag\": \"0\",\n" +
|
|
|
- " \"newEnergyFlag\": \"0\",\n" +
|
|
|
- " \"newFuelModel\": \"0\",\n" +
|
|
|
- " \"newFuelModelName\": \"正常缴税\",\n" +
|
|
|
- " \"noticeType\": \"HG7205AAC4\",\n" +
|
|
|
- " \"ocr_invoice_flag\": \"0\",\n" +
|
|
|
- " \"ownerAddress\": \"山西省清徐县清源镇六合村北大街34号\",\n" +
|
|
|
- " \"ownerAreas\": \"山西省太原市清徐县\",\n" +
|
|
|
- " \"ownerCityName\": \"太原市\",\n" +
|
|
|
- " \"ownerPostName\": \"清徐县\",\n" +
|
|
|
- " \"ownerProvinceName\": \"山西省\",\n" +
|
|
|
- " \"ownersAddress\": \"山西省清徐县清源镇六合村北大街34号\",\n" +
|
|
|
- " \"postCode\": \"140100\",\n" +
|
|
|
- " \"power\": \"114\",\n" +
|
|
|
- " \"powerLB\": 1.997,\n" +
|
|
|
- " \"powertypecode\": \"D1\",\n" +
|
|
|
- " \"productType\": \"0101\",\n" +
|
|
|
- " \"proposalNo\": \"\",\n" +
|
|
|
- " \"purchasePrice\": \"149800\",\n" +
|
|
|
- " \"pureElectricBatteryType\": \"11\",\n" +
|
|
|
- " \"pureRiskPremium\": \"1\",\n" +
|
|
|
- " \"rateCode\": \"20\",\n" +
|
|
|
- " \"relationShip\": \"1\",\n" +
|
|
|
- " \"restricFlag\": \"\",\n" +
|
|
|
- " \"riskTypeCode\": \"0\",\n" +
|
|
|
- " \"riskTypeCodeName\": \"0-正常车型\",\n" +
|
|
|
- " \"riskTypeName\": \"正常车型\",\n" +
|
|
|
- " \"seatCount\": \"5\",\n" +
|
|
|
- " \"seatCountlb\": 5,\n" +
|
|
|
- " \"sex\": \"1\",\n" +
|
|
|
- " \"sexRecogNition\": \"1\",\n" +
|
|
|
- " \"speed\": \"200\",\n" +
|
|
|
- " \"stopFlagCode\": \"1\",\n" +
|
|
|
- " \"stopFlagCodeName\": \"1-停产\",\n" +
|
|
|
- " \"termsSystem\": \"04\",\n" +
|
|
|
- " \"tonCount\": \"0\",\n" +
|
|
|
- " \"tonCountlb\": \"0\",\n" +
|
|
|
- " \"tractionTonCount\": \"\",\n" +
|
|
|
- " \"transmissionttype\": \"CVT\",\n" +
|
|
|
- " \"useNatureCode\": \"8A\",\n" +
|
|
|
- " \"useNatureCodeNition\": \"8A\",\n" +
|
|
|
- " \"useNatureCodeNitionNew\": \"\",\n" +
|
|
|
- " \"useYears\": 11,\n" +
|
|
|
- " \"vehicleBrand\": \"雅阁HG7205AAC4轿车\",\n" +
|
|
|
- " \"vehicleClassNewCode\": \"JC04\",\n" +
|
|
|
- " \"vehicleClassNewCodeName\": \"JC04-中型轿车(B)\",\n" +
|
|
|
- " \"vehicleClassNewName\": \"中型轿车(B)\",\n" +
|
|
|
- " \"vehicleCode\": \"BGQEYHUC000871A1\",\n" +
|
|
|
- " \"vehicleSize\": \"4930*1845*1470\",\n" +
|
|
|
- " \"vinClick\": \"1\",\n" +
|
|
|
- " \"vinModel\": \"BTAALD0103\",\n" +
|
|
|
- " \"vinNo\": \"LHGCR1640E8037440\",\n" +
|
|
|
- " \"vinNoRecogNition\": \"LHGCR1640E8037440\",\n" +
|
|
|
- " \"ymModelSegmentation\": \"\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"prpTitemCarExt\": {},\n" +
|
|
|
- " \"prpTmain\": {\n" +
|
|
|
- " \"answer\": \"\",\n" +
|
|
|
- " \"biAnswer\": \"\",\n" +
|
|
|
- " \"disCount\": 1.0,\n" +
|
|
|
- " \"endDate\": \"2027-05-30\",\n" +
|
|
|
- " \"endDate0507\": \"2027-05-12T16:00:00.000Z\",\n" +
|
|
|
- " \"endDate0507t1\": \"2027-05-12T16:00:00.000Z\",\n" +
|
|
|
- " \"endHour\": 24,\n" +
|
|
|
- " \"endHour0507\": 24,\n" +
|
|
|
- " \"endMinute\": 0,\n" +
|
|
|
- " \"endMinute0507\": 0,\n" +
|
|
|
- " \"endMinute0507t1\": 0,\n" +
|
|
|
- " \"expectDiscount\": \"\",\n" +
|
|
|
- " \"feeandDiscountFlag\": \"0\",\n" +
|
|
|
- " \"immeValiFlag\": \"\",\n" +
|
|
|
- " \"immeValiFlag0507\": 0,\n" +
|
|
|
- " \"immeValiFlag0507t1\": 0,\n" +
|
|
|
- " \"immeValidEndDate\": \"\",\n" +
|
|
|
- " \"immeValidEndDate0507\": \"2027-05-12T16:00:00.000Z\",\n" +
|
|
|
- " \"immeValidEndDate0507t1\": \"2027-05-12T16:00:00.000Z\",\n" +
|
|
|
- " \"immeValidStartDate\": \"\",\n" +
|
|
|
- " \"immeValidStartDate0507\": \"2026-05-13T16:00:00.000Z\",\n" +
|
|
|
- " \"immeValidStartDate0507t1\": \"2026-05-13T16:00:00.000Z\",\n" +
|
|
|
- " \"inputDate\": \"2026-05-13\",\n" +
|
|
|
- " \"period0530\": 30,\n" +
|
|
|
- " \"renewalFlag\": \"\",\n" +
|
|
|
- " \"saleChange\": \"0\",\n" +
|
|
|
- " \"signDate\": \"2026-05-13\",\n" +
|
|
|
- " \"signDiscount\": 0.0,\n" +
|
|
|
- " \"startDate\": \"2026-05-31\",\n" +
|
|
|
- " \"startDate0507\": \"2026-05-13T16:00:00.000Z\",\n" +
|
|
|
- " \"startDate0507t1\": \"2026-05-13T16:00:00.000Z\",\n" +
|
|
|
- " \"startDateFlag\": 0,\n" +
|
|
|
- " \"startDateFlag0507\": 0,\n" +
|
|
|
- " \"startDateFlag0507t1\": 0,\n" +
|
|
|
- " \"startHour\": 0,\n" +
|
|
|
- " \"startHour0507\": 0,\n" +
|
|
|
- " \"startMinute\": 0,\n" +
|
|
|
- " \"startMinute0507\": 0,\n" +
|
|
|
- " \"startMinute0507t1\": 0,\n" +
|
|
|
- " \"sumLowerRate\": \"\",\n" +
|
|
|
- " \"sumPremium\": \"\",\n" +
|
|
|
- " \"sumnoTaxPremium\": 896.23\n" +
|
|
|
- " },\n" +
|
|
|
- " \"prpTmainRate\": {\n" +
|
|
|
- " \"accruedexpenses\": \"0\",\n" +
|
|
|
- " \"actuarialCoef\": \"交强险 1.2019;商业险 1.2019;\",\n" +
|
|
|
- " \"actuarialRuleCode\": \"交强险 I99A12511001,I03A12512007,I03A12504020,I03A12509002,I03A12512001;商业险 I99A12511001,I03A12512007,I03A12504020,I03A12509002,I03A12512001;\",\n" +
|
|
|
- " \"attribute1\": \"0.00\",\n" +
|
|
|
- " \"attribute2\": \"0.00\",\n" +
|
|
|
- " \"attribute3\": \"0.00\",\n" +
|
|
|
- " \"attribute4\": \"0.00\",\n" +
|
|
|
- " \"attribute5\": \"\",\n" +
|
|
|
- " \"billcomacquisitionfeerate\": 0,\n" +
|
|
|
- " \"billcomallowance\": 0,\n" +
|
|
|
- " \"billcomotherfeerate\": 0,\n" +
|
|
|
- " \"billcomtransfeerate\": 0,\n" +
|
|
|
- " \"chdConsistent\": \"-2\",\n" +
|
|
|
- " \"chdTranche\": \"-2\",\n" +
|
|
|
- " \"classcode\": \"05\",\n" +
|
|
|
- " \"coefficient1\": 0,\n" +
|
|
|
- " \"coefficient10\": 0,\n" +
|
|
|
- " \"coefficient11\": 0,\n" +
|
|
|
- " \"coefficient2\": 0,\n" +
|
|
|
- " \"coefficient3\": 0,\n" +
|
|
|
- " \"coefficient4\": 0,\n" +
|
|
|
- " \"coefficient5\": 0,\n" +
|
|
|
- " \"coefficient6\": 0,\n" +
|
|
|
- " \"coefficient7\": 0,\n" +
|
|
|
- " \"coefficient8\": 0,\n" +
|
|
|
- " \"coefficient9\": 0,\n" +
|
|
|
- " \"dispersion\": \"0\",\n" +
|
|
|
- " \"evScore\": \"-2\",\n" +
|
|
|
- " \"highRiskCar\": \"\",\n" +
|
|
|
- " \"isFromApps\": \"0\",\n" +
|
|
|
- " \"mileage12\": \"-2\",\n" +
|
|
|
- " \"mileage24\": \"-2\",\n" +
|
|
|
- " \"mileage6\": \"-2\",\n" +
|
|
|
- " \"mutualback\": \"0\",\n" +
|
|
|
- " \"natrnk\": \"-2\",\n" +
|
|
|
- " \"qjhScore\": \"-2\",\n" +
|
|
|
- " \"riskcode\": \"0507\",\n" +
|
|
|
- " \"score12sd\": \"-2\",\n" +
|
|
|
- " \"tempLateFlag\": \"1\",\n" +
|
|
|
- " \"totalAttribute\": 0.0,\n" +
|
|
|
- " \"totalcost\": 0,\n" +
|
|
|
- " \"vhlScore\": \"-2\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"prpTrenewal\": [],\n" +
|
|
|
- " \"prptengageList\": [],\n" +
|
|
|
- " \"prptitemkindList\": [\n" +
|
|
|
- " {\n" +
|
|
|
- " \"amount\": \"200000\",\n" +
|
|
|
- " \"basePremium\": \"0\",\n" +
|
|
|
- " \"calculateFlag\": \"N\",\n" +
|
|
|
- " \"currency\": \"CNY\",\n" +
|
|
|
- " \"deductible\": \"\",\n" +
|
|
|
- " \"discount\": \"0.0\",\n" +
|
|
|
- " \"endDate\": \"2027-05-30\",\n" +
|
|
|
- " \"endHour\": 24,\n" +
|
|
|
- " \"endMinute\": 0,\n" +
|
|
|
- " \"flag\": \" 2 03\",\n" +
|
|
|
- " \"isDeductible\": 0,\n" +
|
|
|
- " \"itemKindNo\": \"0\",\n" +
|
|
|
- " \"kindCode\": \"BZ\",\n" +
|
|
|
- " \"kindName\": \"机动车交通事故责任强制保险\",\n" +
|
|
|
- " \"noTaxPremium\": \"0.0\",\n" +
|
|
|
- " \"premium\": \"0.0\",\n" +
|
|
|
- " \"rate\": \"0\",\n" +
|
|
|
- " \"riskCode\": \"0507\",\n" +
|
|
|
- " \"shortRate\": \"100.0000\",\n" +
|
|
|
- " \"shortRateFlag\": \"2\",\n" +
|
|
|
- " \"startDate\": \"2026-05-31\",\n" +
|
|
|
- " \"startHour\": 0,\n" +
|
|
|
- " \"startMinute\": 0,\n" +
|
|
|
- " \"taxFee\": \"0.0\",\n" +
|
|
|
- " \"taxRate\": \"0.06\"\n" +
|
|
|
- " }\n" +
|
|
|
- " ],\n" +
|
|
|
- " \"queryExpensePowerOutputVo\": {\n" +
|
|
|
- " \"agentClerkFlagDisplay\": \"0\",\n" +
|
|
|
- " \"companyRatePower\": \"0\",\n" +
|
|
|
- " \"configPowerManageFeeRateBI\": \"0\",\n" +
|
|
|
- " \"configPowerManageFeeRateCI\": \"1\",\n" +
|
|
|
- " \"configPowerMiddleCostBI\": \"0\",\n" +
|
|
|
- " \"configPowerMiddleCostCI\": \"0\",\n" +
|
|
|
- " \"errorCode\": \"\",\n" +
|
|
|
- " \"errorMessage\": \"\",\n" +
|
|
|
- " \"manageFeeRateDisplay\": \"1\",\n" +
|
|
|
- " \"personPowerAllowanceRateNoModify\": \"1\",\n" +
|
|
|
- " \"personPowerAllowanceRateNoShow\": \"1\",\n" +
|
|
|
- " \"personPowerBusinessPromoteRateNoModify\": \"1\",\n" +
|
|
|
- " \"personPowerBusinessPromoteRateNoShow\": \"1\",\n" +
|
|
|
- " \"personPowerBusinessTotalCostBIShow\": \"1\",\n" +
|
|
|
- " \"personPowerBusinessTotalCostCIShow\": \"1\",\n" +
|
|
|
- " \"personPowerDisRateNoModify\": \"1\",\n" +
|
|
|
- " \"personPowerDisRateNoShow\": \"1\",\n" +
|
|
|
- " \"personPowerManageFeeRateBC\": \"0\",\n" +
|
|
|
- " \"personPowerMiddleCostBC\": \"0\",\n" +
|
|
|
- " \"salesSalaryRateDisplay\": \"0\"\n" +
|
|
|
- " },\n" +
|
|
|
- " \"shortRate\": 100,\n" +
|
|
|
- " \"showCarShip\": true,\n" +
|
|
|
- " \"trafficInsurance\": {\n" +
|
|
|
- " \"endDate\": \"2026-05-31\",\n" +
|
|
|
- " \"startDate\": \"2025-05-31\"\n" +
|
|
|
- " }\n" +
|
|
|
- " }\n" +
|
|
|
- "}";
|
|
|
-
|
|
|
- JsonNode oldNode = OBJECT_MAPPER.readTree(json1);
|
|
|
- JsonNode newNode = OBJECT_MAPPER.readTree(json2);
|
|
|
-
|
|
|
- List<JsonDiff> diffList = compareJson(oldNode, newNode);
|
|
|
-
|
|
|
- System.out.println("==================== JSON 差异对比报告 ====================");
|
|
|
- if (diffList.isEmpty()) {
|
|
|
- System.out.println("两个JSON完全一致");
|
|
|
- } else {
|
|
|
- diffList.forEach(System.out::println);
|
|
|
- System.out.println("共发现 " + diffList.size() + " 处差异");
|
|
|
- }
|
|
|
- }
|
|
|
-}
|