|
|
@@ -67,7 +67,6 @@ public class ZijinVehicleTypeErrorComponents {
|
|
|
}
|
|
|
|
|
|
|
|
|
- @AllArgsConstructor
|
|
|
@Data
|
|
|
public static class CarType {
|
|
|
|
|
|
@@ -80,6 +79,10 @@ public class ZijinVehicleTypeErrorComponents {
|
|
|
*/
|
|
|
private String platVehicleCode;
|
|
|
|
|
|
+ public CarType(String modelCode, String platVehicleCode) {
|
|
|
+ this.modelCode = modelCode;
|
|
|
+ this.platVehicleCode = platVehicleCode;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
|