package com.sinata.ministryoftransport.model;
|
|
import java.util.Date;
|
|
/**
|
* 驾驶员统计信息
|
*/
|
public class BaseInfoDriverStat {
|
/**
|
* 注册地行政区划代码
|
*/
|
private Integer Address;
|
/**
|
* 机动车驾驶证号
|
*/
|
private String LicenseId;
|
/**
|
* 统计周期(统计周期按月,内容填写统计月份)
|
*/
|
private Date Cycle;
|
/**
|
* 完成订单次数
|
*/
|
private Integer OrderCount;
|
/**
|
* 交通违章次数
|
*/
|
private Integer TrafficViolationCount;
|
/**
|
* 被投诉次数
|
*/
|
private Integer ComplainedCount;
|
/**
|
* 操作标识(1:新增,2:更新,3:删除)
|
*/
|
private Integer Flag;
|
/**
|
* 更新时间
|
*/
|
private Date UpdateTime;
|
|
public Integer getAddress() {
|
return Address;
|
}
|
|
public void setAddress(Integer address) {
|
Address = address;
|
}
|
|
public String getLicenseId() {
|
return LicenseId;
|
}
|
|
public void setLicenseId(String licenseId) {
|
LicenseId = licenseId;
|
}
|
|
public Date getCycle() {
|
return Cycle;
|
}
|
|
public void setCycle(Date cycle) {
|
Cycle = cycle;
|
}
|
|
public Integer getOrderCount() {
|
return OrderCount;
|
}
|
|
public void setOrderCount(Integer orderCount) {
|
OrderCount = orderCount;
|
}
|
|
public Integer getTrafficViolationCount() {
|
return TrafficViolationCount;
|
}
|
|
public void setTrafficViolationCount(Integer trafficViolationCount) {
|
TrafficViolationCount = trafficViolationCount;
|
}
|
|
public Integer getComplainedCount() {
|
return ComplainedCount;
|
}
|
|
public void setComplainedCount(Integer complainedCount) {
|
ComplainedCount = complainedCount;
|
}
|
|
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 "BaseInfoDriverStat{" +
|
"Address=" + Address +
|
", LicenseId='" + LicenseId + '\'' +
|
", Cycle=" + Cycle +
|
", OrderCount=" + OrderCount +
|
", TrafficViolationCount=" + TrafficViolationCount +
|
", ComplainedCount=" + ComplainedCount +
|
", Flag=" + Flag +
|
", UpdateTime=" + UpdateTime +
|
'}';
|
}
|
}
|