yanghb
2023-04-06 e4874ff3af0c59b6b9a1ee1ae39a332829253cd7
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
package com.stylefeng.guns.modular.system.warpper;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
import java.util.Date;
 
@ApiModel("司机注册信息")
public class RegisteredWarpper {
    @ApiModelProperty("电话")
    private String phone;
    @ApiModelProperty("密码")
    private String password;
    @ApiModelProperty("姓名")
    private String name;
    @ApiModelProperty("性别(1=男,2=女)")
    private Integer sex;
    @ApiModelProperty("居住地")
    private String driverContactAddress;
    @ApiModelProperty("居住地(带分隔符)")
    private String driverContactAddress_;
    @ApiModelProperty("身份证号码")
    private String idCard;
    @ApiModelProperty("身份证正面照")
    private String idCardImgUrl1;
    @ApiModelProperty("身份证背面照")
    private String idCardImgUrl2;
    @ApiModelProperty("初次领取驾驶证日期")
    private Date getDriverLicenseDate;
    @ApiModelProperty("服务模式(1=专车/快车,2=出租车,3=机场专线,4=景区直通车,5=公务出行)多个以逗号分隔")
    private String type;
    @ApiModelProperty("从业地行政代码(510100)")
    private String placeOfEmployment;
    @ApiModelProperty("从业地地址(带分隔符)")
    private String placeOfPractice;
    @ApiModelProperty("头像")
    private String headImgUrl;
    @ApiModelProperty("驾驶证照片")
    private String driveCardImgUrl;
    @ApiModelProperty("网约车资格证照片")
    private String networkCarlssueImg;
    @ApiModelProperty("出租车资格证号")
    private String taxiAptitudeCard;
 
 
    public String getPhone() {
        return phone;
    }
 
    public void setPhone(String phone) {
        this.phone = phone;
    }
 
    public String getPassword() {
        return password;
    }
 
    public void setPassword(String password) {
        this.password = password;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public Integer getSex() {
        return sex;
    }
 
    public void setSex(Integer sex) {
        this.sex = sex;
    }
 
    public String getDriverContactAddress() {
        return driverContactAddress;
    }
 
    public void setDriverContactAddress(String driverContactAddress) {
        this.driverContactAddress = driverContactAddress;
    }
 
    public String getIdCard() {
        return idCard;
    }
 
    public void setIdCard(String idCard) {
        this.idCard = idCard;
    }
 
    public String getIdCardImgUrl1() {
        return idCardImgUrl1;
    }
 
    public void setIdCardImgUrl1(String idCardImgUrl1) {
        this.idCardImgUrl1 = idCardImgUrl1;
    }
 
    public String getIdCardImgUrl2() {
        return idCardImgUrl2;
    }
 
    public void setIdCardImgUrl2(String idCardImgUrl2) {
        this.idCardImgUrl2 = idCardImgUrl2;
    }
 
    public Date getGetDriverLicenseDate() {
        return getDriverLicenseDate;
    }
 
    public void setGetDriverLicenseDate(Date getDriverLicenseDate) {
        this.getDriverLicenseDate = getDriverLicenseDate;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getPlaceOfEmployment() {
        return placeOfEmployment;
    }
 
    public void setPlaceOfEmployment(String placeOfEmployment) {
        this.placeOfEmployment = placeOfEmployment;
    }
 
    public String getHeadImgUrl() {
        return headImgUrl;
    }
 
    public void setHeadImgUrl(String headImgUrl) {
        this.headImgUrl = headImgUrl;
    }
 
    public String getDriveCardImgUrl() {
        return driveCardImgUrl;
    }
 
    public void setDriveCardImgUrl(String driveCardImgUrl) {
        this.driveCardImgUrl = driveCardImgUrl;
    }
 
    public String getNetworkCarlssueImg() {
        return networkCarlssueImg;
    }
 
    public void setNetworkCarlssueImg(String networkCarlssueImg) {
        this.networkCarlssueImg = networkCarlssueImg;
    }
 
    public String getTaxiAptitudeCard() {
        return taxiAptitudeCard;
    }
 
    public void setTaxiAptitudeCard(String taxiAptitudeCard) {
        this.taxiAptitudeCard = taxiAptitudeCard;
    }
 
    public String getDriverContactAddress_() {
        return driverContactAddress_;
    }
 
    public void setDriverContactAddress_(String driverContactAddress_) {
        this.driverContactAddress_ = driverContactAddress_;
    }
 
    public String getPlaceOfPractice() {
        return placeOfPractice;
    }
 
    public void setPlaceOfPractice(String placeOfPractice) {
        this.placeOfPractice = placeOfPractice;
    }
 
    @Override
    public String toString() {
        return "RegisteredWarpper{" +
                "phone='" + phone + '\'' +
                ", password='" + password + '\'' +
                ", name='" + name + '\'' +
                ", sex=" + sex +
                ", driverContactAddress='" + driverContactAddress + '\'' +
                ", idCard='" + idCard + '\'' +
                ", idCardImgUrl1='" + idCardImgUrl1 + '\'' +
                ", idCardImgUrl2='" + idCardImgUrl2 + '\'' +
                ", getDriverLicenseDate=" + getDriverLicenseDate +
                ", type=" + type +
                ", placeOfEmployment='" + placeOfEmployment + '\'' +
                ", headImgUrl='" + headImgUrl + '\'' +
                ", driveCardImgUrl='" + driveCardImgUrl + '\'' +
                ", networkCarlssueImg='" + networkCarlssueImg + '\'' +
                ", taxiAptitudeCard='" + taxiAptitudeCard + '\'' +
                '}';
    }
 
 
 
 
}