|
@@ -82,6 +82,7 @@ public class CarPriceReq {
|
|
|
prpTmain.setEProposalFlag("1");
|
|
prpTmain.setEProposalFlag("1");
|
|
|
//购车发票日期
|
|
//购车发票日期
|
|
|
prpTmain.setBusiness(carInfo.getIssueDate());
|
|
prpTmain.setBusiness(carInfo.getIssueDate());
|
|
|
|
|
+
|
|
|
prpTmain.setAgentName(channelInfo.getAgentName());
|
|
prpTmain.setAgentName(channelInfo.getAgentName());
|
|
|
prpTmain.setChanneltypetwoName(channelInfo.getChannelTypeTwoName());
|
|
prpTmain.setChanneltypetwoName(channelInfo.getChannelTypeTwoName());
|
|
|
prpTmain.setChanneltypeoneName(channelInfo.getChannelTypeOneName());
|
|
prpTmain.setChanneltypeoneName(channelInfo.getChannelTypeOneName());
|
|
@@ -131,14 +132,15 @@ public class CarPriceReq {
|
|
|
|
|
|
|
|
prpTitemCar.setEngineNo(carInfo.getEngineNo());
|
|
prpTitemCar.setEngineNo(carInfo.getEngineNo());
|
|
|
prpTitemCar.setBrandName(vinQ.getBrandNameBC());
|
|
prpTitemCar.setBrandName(vinQ.getBrandNameBC());
|
|
|
|
|
+ // 发证日期
|
|
|
prpTitemCar.setCertifiCateDate(carInfo.getIssueDate());
|
|
prpTitemCar.setCertifiCateDate(carInfo.getIssueDate());
|
|
|
|
|
|
|
|
//使用性质 8A 家庭自用
|
|
//使用性质 8A 家庭自用
|
|
|
String vehicleUse = carInfo.getVehicleUse();
|
|
String vehicleUse = carInfo.getVehicleUse();
|
|
|
UseNatureCodeMapping useNatureCodeMapping = UseNatureCodeMapping.valueOf(UseNatureCodeMapping.TITLE + vehicleUse);
|
|
UseNatureCodeMapping useNatureCodeMapping = UseNatureCodeMapping.valueOf(UseNatureCodeMapping.TITLE + vehicleUse);
|
|
|
prpTitemCar.setUseNatureCode(useNatureCodeMapping.getUseNatureCode());
|
|
prpTitemCar.setUseNatureCode(useNatureCodeMapping.getUseNatureCode());
|
|
|
- //初登日期
|
|
|
|
|
- prpTitemCar.setEnrollDate(carInfo.getIssueDate());
|
|
|
|
|
|
|
+ // 初登日期
|
|
|
|
|
+ prpTitemCar.setEnrollDate(carInfo.getRegisterDate());
|
|
|
//核定载客数
|
|
//核定载客数
|
|
|
prpTitemCar.setSeatCount(carInfo.getSeatCount());
|
|
prpTitemCar.setSeatCount(carInfo.getSeatCount());
|
|
|
prpTitemCar.setFuelType(vinQ.getFuelType());
|
|
prpTitemCar.setFuelType(vinQ.getFuelType());
|
|
@@ -317,12 +319,18 @@ public class CarPriceReq {
|
|
|
@JsonProperty(value = "brandName")
|
|
@JsonProperty(value = "brandName")
|
|
|
@JSONField(name = "brandName")
|
|
@JSONField(name = "brandName")
|
|
|
private String brandName;
|
|
private String brandName;
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 发证日期
|
|
|
|
|
+ */
|
|
|
@JsonProperty(value = "certifiCateDate")
|
|
@JsonProperty(value = "certifiCateDate")
|
|
|
@JSONField(name = "certifiCateDate")
|
|
@JSONField(name = "certifiCateDate")
|
|
|
private String certifiCateDate;
|
|
private String certifiCateDate;
|
|
|
@JsonProperty(value = "useNatureCode")
|
|
@JsonProperty(value = "useNatureCode")
|
|
|
@JSONField(name = "useNatureCode")
|
|
@JSONField(name = "useNatureCode")
|
|
|
private String useNatureCode;
|
|
private String useNatureCode;
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 初登日期
|
|
|
|
|
+ */
|
|
|
@JsonProperty(value = "enrollDate")
|
|
@JsonProperty(value = "enrollDate")
|
|
|
@JSONField(name = "enrollDate")
|
|
@JSONField(name = "enrollDate")
|
|
|
private String enrollDate;
|
|
private String enrollDate;
|