| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- package com.ydtech.nai.httpvo;
- /**
- * @ClassName RenewalQueryHeadVO
- * @Description: TODO
- * @Author
- * @Date 2021/5/25
- **/
- public class RenewalQueryHeadVO {
- private HeadVO head;
- private String province;
- private String riskCode;
- private String VIN;
- private String engine;
- private String plateNo;
- private String validDate;
- public void setHead(HeadVO head) {
- this.head = head;
- }
- public HeadVO getHead() {
- return this.head;
- }
- public void setProvince(String province) {
- this.province = province;
- }
- public String getProvince() {
- return this.province;
- }
- public void setRiskCode(String riskCode) {
- this.riskCode = riskCode;
- }
- public String getRiskCode() {
- return this.riskCode;
- }
- public void setVIN(String VIN) {
- this.VIN = VIN;
- }
- public String getVIN() {
- return this.VIN;
- }
- public void setEngine(String engine) {
- this.engine = engine;
- }
- public String getEngine() {
- return this.engine;
- }
- public void setPlateNo(String plateNo) {
- this.plateNo = plateNo;
- }
- public String getPlateNo() {
- return this.plateNo;
- }
- public void setValidDate(String validDate) {
- this.validDate = validDate;
- }
- public String getValidDate() {
- return this.validDate;
- }
- }
|