| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- package com.ydtech.modules.ins.model;
- /**
- * @author qinfenglong
- * @version 1.0.0
- * @description HnCar
- * @since 2020/11/26 22:08
- */
- public class HnCar {
- private String registerDate; //注册日期(必填)
- private String issueDate; //发证日期(必填)
- private boolean transferFlag; //是否过户(必填)
- private String plateNo; //车牌号(必填)
- private String vin; //车架号(必填)
- private String plateType; //车牌类型(不确定是否必填)
- private String motorTypeCode; //车辆类型-客车(必填)
- private String motorUsageTypeCode; //使用性质(必填)
- private boolean noLicenseFlag; //是否新车(必填)
- private String engine; //发动机号(必填)
- private boolean ecdemicVehicleFlag; //是否电动汽车(不确定是否必填)
- private boolean loanStatus; //是否贷款车(必填)
- private String model; //品牌型号(必填)
- private String modelCode; //行业车型编码(必填)
- private String localModelCode; //车型编码(为空就行)
- private String firstBeneMan; //第一受益人
- public String getRegisterDate() {
- return registerDate;
- }
- public void setRegisterDate(String registerDate) {
- this.registerDate = registerDate;
- }
- public String getIssueDate() {
- return issueDate;
- }
- public void setIssueDate(String issueDate) {
- this.issueDate = issueDate;
- }
- public boolean isTransferFlag() {
- return transferFlag;
- }
- public void setTransferFlag(boolean transferFlag) {
- this.transferFlag = transferFlag;
- }
- public String getPlateNo() {
- return plateNo;
- }
- public void setPlateNo(String plateNo) {
- this.plateNo = plateNo;
- }
- public String getVin() {
- return vin;
- }
- public void setVin(String vin) {
- this.vin = vin;
- }
- public String getPlateType() {
- return plateType;
- }
- public void setPlateType(String plateType) {
- this.plateType = plateType;
- }
- public String getMotorTypeCode() {
- return motorTypeCode;
- }
- public void setMotorTypeCode(String motorTypeCode) {
- this.motorTypeCode = motorTypeCode;
- }
- public String getMotorUsageTypeCode() {
- return motorUsageTypeCode;
- }
- public void setMotorUsageTypeCode(String motorUsageTypeCode) {
- this.motorUsageTypeCode = motorUsageTypeCode;
- }
- public boolean isNoLicenseFlag() {
- return noLicenseFlag;
- }
- public void setNoLicenseFlag(boolean noLicenseFlag) {
- this.noLicenseFlag = noLicenseFlag;
- }
- public String getEngine() {
- return engine;
- }
- public void setEngine(String engine) {
- this.engine = engine;
- }
- public boolean isEcdemicVehicleFlag() {
- return ecdemicVehicleFlag;
- }
- public void setEcdemicVehicleFlag(boolean ecdemicVehicleFlag) {
- this.ecdemicVehicleFlag = ecdemicVehicleFlag;
- }
- public boolean isLoanStatus() {
- return loanStatus;
- }
- public void setLoanStatus(boolean loanStatus) {
- this.loanStatus = loanStatus;
- }
- public String getModel() {
- return model;
- }
- public void setModel(String model) {
- this.model = model;
- }
- public String getModelCode() {
- return modelCode;
- }
- public void setModelCode(String modelCode) {
- this.modelCode = modelCode;
- }
- public String getLocalModelCode() {
- return localModelCode;
- }
- public void setLocalModelCode(String localModelCode) {
- this.localModelCode = localModelCode;
- }
- public String getFirstBeneMan() {
- return firstBeneMan;
- }
- public void setFirstBeneMan(String firstBeneMan) {
- this.firstBeneMan = firstBeneMan;
- }
- }
|