HnCar.java 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. package com.ydtech.modules.ins.model;
  2. /**
  3. * @author qinfenglong
  4. * @version 1.0.0
  5. * @description HnCar
  6. * @since 2020/11/26 22:08
  7. */
  8. public class HnCar {
  9. private String registerDate; //注册日期(必填)
  10. private String issueDate; //发证日期(必填)
  11. private boolean transferFlag; //是否过户(必填)
  12. private String plateNo; //车牌号(必填)
  13. private String vin; //车架号(必填)
  14. private String plateType; //车牌类型(不确定是否必填)
  15. private String motorTypeCode; //车辆类型-客车(必填)
  16. private String motorUsageTypeCode; //使用性质(必填)
  17. private boolean noLicenseFlag; //是否新车(必填)
  18. private String engine; //发动机号(必填)
  19. private boolean ecdemicVehicleFlag; //是否电动汽车(不确定是否必填)
  20. private boolean loanStatus; //是否贷款车(必填)
  21. private String model; //品牌型号(必填)
  22. private String modelCode; //行业车型编码(必填)
  23. private String localModelCode; //车型编码(为空就行)
  24. private String firstBeneMan; //第一受益人
  25. public String getRegisterDate() {
  26. return registerDate;
  27. }
  28. public void setRegisterDate(String registerDate) {
  29. this.registerDate = registerDate;
  30. }
  31. public String getIssueDate() {
  32. return issueDate;
  33. }
  34. public void setIssueDate(String issueDate) {
  35. this.issueDate = issueDate;
  36. }
  37. public boolean isTransferFlag() {
  38. return transferFlag;
  39. }
  40. public void setTransferFlag(boolean transferFlag) {
  41. this.transferFlag = transferFlag;
  42. }
  43. public String getPlateNo() {
  44. return plateNo;
  45. }
  46. public void setPlateNo(String plateNo) {
  47. this.plateNo = plateNo;
  48. }
  49. public String getVin() {
  50. return vin;
  51. }
  52. public void setVin(String vin) {
  53. this.vin = vin;
  54. }
  55. public String getPlateType() {
  56. return plateType;
  57. }
  58. public void setPlateType(String plateType) {
  59. this.plateType = plateType;
  60. }
  61. public String getMotorTypeCode() {
  62. return motorTypeCode;
  63. }
  64. public void setMotorTypeCode(String motorTypeCode) {
  65. this.motorTypeCode = motorTypeCode;
  66. }
  67. public String getMotorUsageTypeCode() {
  68. return motorUsageTypeCode;
  69. }
  70. public void setMotorUsageTypeCode(String motorUsageTypeCode) {
  71. this.motorUsageTypeCode = motorUsageTypeCode;
  72. }
  73. public boolean isNoLicenseFlag() {
  74. return noLicenseFlag;
  75. }
  76. public void setNoLicenseFlag(boolean noLicenseFlag) {
  77. this.noLicenseFlag = noLicenseFlag;
  78. }
  79. public String getEngine() {
  80. return engine;
  81. }
  82. public void setEngine(String engine) {
  83. this.engine = engine;
  84. }
  85. public boolean isEcdemicVehicleFlag() {
  86. return ecdemicVehicleFlag;
  87. }
  88. public void setEcdemicVehicleFlag(boolean ecdemicVehicleFlag) {
  89. this.ecdemicVehicleFlag = ecdemicVehicleFlag;
  90. }
  91. public boolean isLoanStatus() {
  92. return loanStatus;
  93. }
  94. public void setLoanStatus(boolean loanStatus) {
  95. this.loanStatus = loanStatus;
  96. }
  97. public String getModel() {
  98. return model;
  99. }
  100. public void setModel(String model) {
  101. this.model = model;
  102. }
  103. public String getModelCode() {
  104. return modelCode;
  105. }
  106. public void setModelCode(String modelCode) {
  107. this.modelCode = modelCode;
  108. }
  109. public String getLocalModelCode() {
  110. return localModelCode;
  111. }
  112. public void setLocalModelCode(String localModelCode) {
  113. this.localModelCode = localModelCode;
  114. }
  115. public String getFirstBeneMan() {
  116. return firstBeneMan;
  117. }
  118. public void setFirstBeneMan(String firstBeneMan) {
  119. this.firstBeneMan = firstBeneMan;
  120. }
  121. }