|
|
@@ -156,9 +156,29 @@ public class HuaTaiQuotedPriceRequest extends HuaTaiBaseRequest {
|
|
|
@JSONField(name = "simpleStadarCar")
|
|
|
private SimpleStadarCarDto simpleStadarCar;
|
|
|
|
|
|
+ @JSONField(name = "platformCar")
|
|
|
+ private PlatformCarDto platformCar;
|
|
|
+
|
|
|
+
|
|
|
public InsuredObjectDto(CarInfoVo carInfo, HuaTaiModelsQueryResponse.CarModelDto.FullCarDataDto fullCarDataDto) {
|
|
|
this.policyCar = new PolicyCarDto(carInfo, fullCarDataDto);
|
|
|
this.simpleStadarCar = new SimpleStadarCarDto(carInfo, fullCarDataDto);
|
|
|
+ this.platformCar = new PlatformCarDto();
|
|
|
+ }
|
|
|
+
|
|
|
+ @AllArgsConstructor
|
|
|
+ @Data
|
|
|
+ public static class PlatformCarDto implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = -7496687235740494863L;
|
|
|
+
|
|
|
+ @JSONField(name = "searchSequenceNo")
|
|
|
+ private String searchSequenceNo;
|
|
|
+
|
|
|
+ public PlatformCarDto() {
|
|
|
+ this.searchSequenceNo = "";
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|
|
|
@NoArgsConstructor
|