xuhy
2023-08-11 9f883e7eb1b181aab1a2dc36765a1d11e39cf532
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
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 +
                '}';
    }
}