178 lines
4.0 KiB
Java
178 lines
4.0 KiB
Java
package com.arpa.hndahesudintocctmsdriver.bean;
|
|
|
|
/**
|
|
* @ClassName OCRRoadBean
|
|
* @Author john
|
|
* @Date 2024/11/19 17:05
|
|
* @Description TODO
|
|
*/
|
|
public class OCRRoadBean {
|
|
|
|
|
|
private int code;
|
|
private DataDTO data;
|
|
private String msg;
|
|
private String remark;
|
|
private int res;
|
|
private boolean success;
|
|
|
|
public int getCode() {
|
|
return code;
|
|
}
|
|
|
|
public void setCode(int code) {
|
|
this.code = code;
|
|
}
|
|
|
|
public DataDTO getData() {
|
|
return data;
|
|
}
|
|
|
|
public void setData(DataDTO data) {
|
|
this.data = data;
|
|
}
|
|
|
|
public String getMsg() {
|
|
return msg;
|
|
}
|
|
|
|
public void setMsg(String msg) {
|
|
this.msg = msg;
|
|
}
|
|
|
|
public String getRemark() {
|
|
return remark;
|
|
}
|
|
|
|
public void setRemark(String remark) {
|
|
this.remark = remark;
|
|
}
|
|
|
|
public int getRes() {
|
|
return res;
|
|
}
|
|
|
|
public void setRes(int res) {
|
|
this.res = res;
|
|
}
|
|
|
|
public boolean isSuccess() {
|
|
return success;
|
|
}
|
|
|
|
public void setSuccess(boolean success) {
|
|
this.success = success;
|
|
}
|
|
|
|
public static class DataDTO {
|
|
private String vehicleWeight;
|
|
private String issuingAuthority;
|
|
private String ownerName;
|
|
private String businessCertificate;
|
|
private String economicType;
|
|
private String businessScope;
|
|
private String vehicleNumber;
|
|
private String licenseNumber;
|
|
private String vehicleSize;
|
|
private String ownerAddress;
|
|
private String issueDate;
|
|
private String vehicleType;
|
|
|
|
public String getVehicleWeight() {
|
|
return vehicleWeight;
|
|
}
|
|
|
|
public void setVehicleWeight(String vehicleWeight) {
|
|
this.vehicleWeight = vehicleWeight;
|
|
}
|
|
|
|
public String getIssuingAuthority() {
|
|
return issuingAuthority;
|
|
}
|
|
|
|
public void setIssuingAuthority(String issuingAuthority) {
|
|
this.issuingAuthority = issuingAuthority;
|
|
}
|
|
|
|
public String getOwnerName() {
|
|
return ownerName;
|
|
}
|
|
|
|
public void setOwnerName(String ownerName) {
|
|
this.ownerName = ownerName;
|
|
}
|
|
|
|
public String getBusinessCertificate() {
|
|
return businessCertificate;
|
|
}
|
|
|
|
public void setBusinessCertificate(String businessCertificate) {
|
|
this.businessCertificate = businessCertificate;
|
|
}
|
|
|
|
public String getEconomicType() {
|
|
return economicType;
|
|
}
|
|
|
|
public void setEconomicType(String economicType) {
|
|
this.economicType = economicType;
|
|
}
|
|
|
|
public String getBusinessScope() {
|
|
return businessScope;
|
|
}
|
|
|
|
public void setBusinessScope(String businessScope) {
|
|
this.businessScope = businessScope;
|
|
}
|
|
|
|
public String getVehicleNumber() {
|
|
return vehicleNumber;
|
|
}
|
|
|
|
public void setVehicleNumber(String vehicleNumber) {
|
|
this.vehicleNumber = vehicleNumber;
|
|
}
|
|
|
|
public String getLicenseNumber() {
|
|
return licenseNumber;
|
|
}
|
|
|
|
public void setLicenseNumber(String licenseNumber) {
|
|
this.licenseNumber = licenseNumber;
|
|
}
|
|
|
|
public String getVehicleSize() {
|
|
return vehicleSize;
|
|
}
|
|
|
|
public void setVehicleSize(String vehicleSize) {
|
|
this.vehicleSize = vehicleSize;
|
|
}
|
|
|
|
public String getOwnerAddress() {
|
|
return ownerAddress;
|
|
}
|
|
|
|
public void setOwnerAddress(String ownerAddress) {
|
|
this.ownerAddress = ownerAddress;
|
|
}
|
|
|
|
public String getIssueDate() {
|
|
return issueDate;
|
|
}
|
|
|
|
public void setIssueDate(String issueDate) {
|
|
this.issueDate = issueDate;
|
|
}
|
|
|
|
public String getVehicleType() {
|
|
return vehicleType;
|
|
}
|
|
|
|
public void setVehicleType(String vehicleType) {
|
|
this.vehicleType = vehicleType;
|
|
}
|
|
}
|
|
}
|