VehiclePermitDetailsResponseObject.java 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. package info.aspirecn.iov.sjjh.supplier10000034.vo;
  2. import java.util.List;
  3. import com.fasterxml.jackson.annotation.JsonProperty;
  4. import lombok.Data;
  5. import lombok.ToString;
  6. /**
  7. * 查询车辆运输许可证信息接口响应对象
  8. * @author lixinxu
  9. *
  10. */
  11. @Data
  12. @ToString(callSuper = true, includeFieldNames = true)
  13. public class VehiclePermitDetailsResponseObject {
  14. /**返回码*/
  15. @JsonProperty("resultCode")
  16. private String resultCode;
  17. /**返回信息*/
  18. @JsonProperty("resultMsg")
  19. private String resultMsg;
  20. /**链路跟踪编号*/
  21. @JsonProperty("traceId")
  22. private String traceId;
  23. /**返回数据*/
  24. @JsonProperty("data")
  25. private Particulars data;
  26. @Data
  27. public static class Particulars {
  28. /**车牌号*/
  29. @JsonProperty("vehicleNumber")
  30. private String vehicleNumber;
  31. /**牌照颜色类型代码*/
  32. @JsonProperty("licensePlateTypeCode")
  33. private String licensePlateTypeCode;
  34. /**辆车架号*/
  35. @JsonProperty("vinNo")
  36. private String vinNo;
  37. /**车辆类型*/
  38. @JsonProperty("vehicleClassification")
  39. private String vehicleClassification;
  40. /**车辆车长*/
  41. @JsonProperty("vehicleLength")
  42. private String vehicleLength;
  43. /**车辆车宽*/
  44. @JsonProperty("vehicleWidth")
  45. private String vehicleWidth;
  46. /**车辆车高*/
  47. @JsonProperty("vehicleHeight")
  48. private String vehicleHeight;
  49. /**车辆准牵引总质量*/
  50. @JsonProperty("vehicleMaximumTractionWeight")
  51. private String vehicleMaximumTractionWeight;
  52. /**核定载质量*/
  53. @JsonProperty("vehicleTonnage")
  54. private String vehicleTonnage;
  55. /**车辆营运状态*/
  56. @JsonProperty("businessState")
  57. private String businessState;
  58. /**车辆营运状态代码*/
  59. @JsonProperty("businessStateCode")
  60. private String businessStateCode;
  61. /**道路运输证号*/
  62. @JsonProperty("roadTransportCertificateNumber")
  63. private String roadTransportCertificateNumber;
  64. /**发证单位*/
  65. @JsonProperty("certificationUnit")
  66. private String certificationUnit;
  67. /**有效期起*/
  68. @JsonProperty("periodStartDate")
  69. private String periodStartDate;
  70. /**有效期止*/
  71. @JsonProperty("periodEndDate")
  72. private String periodEndDate;
  73. /**经营范围*/
  74. @JsonProperty("businessScope")
  75. private String businessScope;
  76. /**辆年度审验有效期至*/
  77. @JsonProperty("checkStateExpireDate")
  78. private String checkStateExpireDate;
  79. /**业户名称*/
  80. @JsonProperty("vehicleCorporationName")
  81. private String vehicleCorporationName;
  82. /**发证日期*/
  83. @JsonProperty("issuingDate")
  84. private String issuingDate;
  85. }
  86. }