123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- package info.aspirecn.iov.sjjh.supplier10000034.vo;
- import java.util.List;
- import com.fasterxml.jackson.annotation.JsonProperty;
- import lombok.Data;
- import lombok.ToString;
- @Data
- @ToString(callSuper = true, includeFieldNames = true)
- public class VehiclePermitDetailsResponseObject {
-
- @JsonProperty("resultCode")
- private String resultCode;
-
- @JsonProperty("resultMsg")
- private String resultMsg;
-
- @JsonProperty("traceId")
- private String traceId;
-
- @JsonProperty("data")
- private Particulars data;
- @Data
- public static class Particulars {
-
-
- @JsonProperty("vehicleNumber")
- private String vehicleNumber;
-
- @JsonProperty("licensePlateTypeCode")
- private String licensePlateTypeCode;
-
- @JsonProperty("vinNo")
- private String vinNo;
-
- @JsonProperty("vehicleClassification")
- private String vehicleClassification;
-
- @JsonProperty("vehicleLength")
- private String vehicleLength;
-
- @JsonProperty("vehicleWidth")
- private String vehicleWidth;
-
- @JsonProperty("vehicleHeight")
- private String vehicleHeight;
-
- @JsonProperty("vehicleMaximumTractionWeight")
- private String vehicleMaximumTractionWeight;
-
- @JsonProperty("vehicleTonnage")
- private String vehicleTonnage;
-
- @JsonProperty("businessState")
- private String businessState;
-
- @JsonProperty("businessStateCode")
- private String businessStateCode;
-
- @JsonProperty("roadTransportCertificateNumber")
- private String roadTransportCertificateNumber;
-
- @JsonProperty("certificationUnit")
- private String certificationUnit;
-
- @JsonProperty("periodStartDate")
- private String periodStartDate;
-
- @JsonProperty("periodEndDate")
- private String periodEndDate;
-
- @JsonProperty("businessScope")
- private String businessScope;
-
- @JsonProperty("checkStateExpireDate")
- private String checkStateExpireDate;
-
- @JsonProperty("vehicleCorporationName")
- private String vehicleCorporationName;
-
- @JsonProperty("issuingDate")
- private String issuingDate;
- }
- }
|