package com.ydtech.modules.nai.httpvo; import org.joda.time.DateTime; import java.util.Date; /** * @ClassName PolicyCarVO * @Description: TODO * @Author mengyb * @Date 2021/5/25 **/ public class PolicyCarVO { private String engine; private boolean newCarSign; private String plateNo; private String VIN; private String chgOwnerFlag; private String registerDate; private String transferDate; private boolean ecdemicVehicleFlag; private String issueDate; private String PlateType; private String carUseType; private String plateColorCode; private String carCheckStatus; public String getEngine() { return engine; } public void setEngine(String engine) { this.engine = engine; } public boolean isNewCarSign() { return newCarSign; } public void setNewCarSign(boolean newCarSign) { this.newCarSign = newCarSign; } 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 getChgOwnerFlag() { return chgOwnerFlag; } public void setChgOwnerFlag(String chgOwnerFlag) { this.chgOwnerFlag = chgOwnerFlag; } public String getRegisterDate() { return registerDate; } public void setRegisterDate(String registerDate) { this.registerDate = registerDate; } public String getTransferDate() { return transferDate; } public void setTransferDate(String transferDate) { this.transferDate = transferDate; } public boolean isEcdemicVehicleFlag() { return ecdemicVehicleFlag; } public void setEcdemicVehicleFlag(boolean ecdemicVehicleFlag) { this.ecdemicVehicleFlag = ecdemicVehicleFlag; } public String getIssueDate() { return issueDate; } public void setIssueDate(String issueDate) { this.issueDate = issueDate; } public String getPlateType() { return PlateType; } public void setPlateType(String plateType) { PlateType = plateType; } public String getCarUseType() { return carUseType; } public void setCarUseType(String carUseType) { this.carUseType = carUseType; } public String getPlateColorCode() { return plateColorCode; } public void setPlateColorCode(String plateColorCode) { this.plateColorCode = plateColorCode; } public String getCarCheckStatus() { return carCheckStatus; } public void setCarCheckStatus(String carCheckStatus) { this.carCheckStatus = carCheckStatus; } }