package com.sinata.ministryoftransport.model;
|
|
import java.util.Date;
|
|
/**
|
* 网约车平台公司经营许可
|
*/
|
public class BaseInfoCompanyPermit {
|
/**
|
* 许可地行政区划代码
|
*/
|
private Integer Address;
|
/**
|
* 网络预约出租车经营许可证号
|
*/
|
private String Certificate;
|
/**
|
* 经营区域
|
*/
|
private String OperationArea;
|
/**
|
* 公司名称
|
*/
|
private String OwnerName;
|
/**
|
* 发证机构名称
|
*/
|
private String Organization;
|
/**
|
* 有效期起
|
*/
|
private Date StartDate;
|
/**
|
* 有效期止
|
*/
|
private Date StopDate;
|
/**
|
* 初次发证日期
|
*/
|
private Date CertifyDate;
|
/**
|
* 状态(0:有效,1:无效)
|
*/
|
private Integer State;
|
/**
|
* 操作标识(1:新增,2:更新,3:删除)
|
*/
|
private Integer Flag;
|
/**
|
* 更新时间
|
*/
|
private Date UpdateTime;
|
|
public Integer getAddress() {
|
return Address;
|
}
|
|
public void setAddress(Integer address) {
|
Address = address;
|
}
|
|
public String getCertificate() {
|
return Certificate;
|
}
|
|
public void setCertificate(String certificate) {
|
Certificate = certificate;
|
}
|
|
public String getOperationArea() {
|
return OperationArea;
|
}
|
|
public void setOperationArea(String operationArea) {
|
OperationArea = operationArea;
|
}
|
|
public String getOwnerName() {
|
return OwnerName;
|
}
|
|
public void setOwnerName(String ownerName) {
|
OwnerName = ownerName;
|
}
|
|
public String getOrganization() {
|
return Organization;
|
}
|
|
public void setOrganization(String organization) {
|
Organization = organization;
|
}
|
|
public Date getStartDate() {
|
return StartDate;
|
}
|
|
public void setStartDate(Date startDate) {
|
StartDate = startDate;
|
}
|
|
public Date getStopDate() {
|
return StopDate;
|
}
|
|
public void setStopDate(Date stopDate) {
|
StopDate = stopDate;
|
}
|
|
public Date getCertifyDate() {
|
return CertifyDate;
|
}
|
|
public void setCertifyDate(Date certifyDate) {
|
CertifyDate = certifyDate;
|
}
|
|
public Integer getState() {
|
return State;
|
}
|
|
public void setState(Integer state) {
|
State = state;
|
}
|
|
public Integer getFlag() {
|
return Flag;
|
}
|
|
public void setFlag(Integer flag) {
|
Flag = flag;
|
}
|
|
public Date getUpdateTime() {
|
return UpdateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
UpdateTime = updateTime;
|
}
|
|
@Override
|
public String toString() {
|
return "BaseInfoCompanyPermit{" +
|
"Address=" + Address +
|
", Certificate='" + Certificate + '\'' +
|
", OperationArea='" + OperationArea + '\'' +
|
", OwnerName='" + OwnerName + '\'' +
|
", Organization='" + Organization + '\'' +
|
", StartDate=" + StartDate +
|
", StopDate=" + StopDate +
|
", CertifyDate=" + CertifyDate +
|
", State=" + State +
|
", Flag=" + Flag +
|
", UpdateTime=" + UpdateTime +
|
'}';
|
}
|
}
|