liujie
9 天以前 536ef422b4f3d8bd0179fa664444a467913616c1
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
package com.stylefeng.guns.modular.shunfeng.model;
 
import com.baomidou.mybatisplus.activerecord.Model;
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.annotations.TableName;
import com.baomidou.mybatisplus.enums.IdType;
 
import java.io.Serializable;
import java.util.Date;
 
 
/**
 * <p>
 * 顺风车司机
 * </p>
 *
 * @author stylefeng123
 * @since 2020-04-27
 */
@TableName("app_driver_ride")
public class AppDriverRide extends Model<AppDriverRide> {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * ID
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    /**
     * 申请时间
     */
    private Date addTime;
    /**
     * 所属公司
     */
    private Integer companyId;
    /**
     * 车辆品牌
     */
    private String carType;
    /**
     * 车牌
     */
    private String carNum;
    /**
     * 驾驶证号
     */
    private String license;
    /**
     * 驾驶证图片
     */
    private String licenseImg;
    /**
     * 交强险到期时间
     */
    private String comInsuranceTime;
    /**
     * 交强险照片
     */
    private String comInsuranceImg;
    /**
     * 商业险到期时间
     */
    private String businessInsuranceTime;
    /**
     * 商业险图片
     */
    private String businessInsuranceImg;
    /**
     * 驾乘人员责任险到期时间
     */
    private String dutyInsuranceTime;
    /**
     * 驾乘人员责任险照片
     */
    private String dutyInsuranceImg;
    /**
     * 年检到期时间
     */
    private String annualInspectionTime;
    /**
     * 年检图片
     */
    private String annualInspectionImg;
    /**
     * 用户id
     */
    private Integer userId;
    /**
     * 1等待审核,2审核通过,3不通过
     */
    private Integer state;
    /**
     * 别人的邀请码
     */
    private String byInviteCode;
    /**
     * 审核备注
     */
    private String remark;
    /**
     * 状态 1=正常 2=禁用
     */
    private Integer status;
 
    /**
     *   是否删除  0否,1是
     */
    private Integer isDelete;
 
    public Integer getIsDelete() {
        return isDelete;
    }
 
    public void setIsDelete(Integer isDelete) {
        this.isDelete = isDelete;
    }
    /**
     * 用户电话(所属条件)
     */
    @TableField(exist = false)
    private String phone;
    /**
     * 用户真实名称
     */
    @TableField(exist = false)
    private String realName;
    /**
     * 是否为异常订单(0否,1是)
     */
    @TableField(exist = false)
    private Integer excep;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public Date getAddTime() {
        return addTime;
    }
 
    public void setAddTime(Date addTime) {
        this.addTime = addTime;
    }
 
    public Integer getCompanyId() {
        return companyId;
    }
 
    public void setCompanyId(Integer companyId) {
        this.companyId = companyId;
    }
 
    public String getCarType() {
        return carType;
    }
 
    public void setCarType(String carType) {
        this.carType = carType;
    }
 
    public String getCarNum() {
        return carNum;
    }
 
    public void setCarNum(String carNum) {
        this.carNum = carNum;
    }
 
    public String getLicense() {
        return license;
    }
 
    public void setLicense(String license) {
        this.license = license;
    }
 
    public String getLicenseImg() {
        return licenseImg;
    }
 
    public void setLicenseImg(String licenseImg) {
        this.licenseImg = licenseImg;
    }
 
    public String getComInsuranceTime() {
        return comInsuranceTime;
    }
 
    public void setComInsuranceTime(String comInsuranceTime) {
        this.comInsuranceTime = comInsuranceTime;
    }
 
    public String getComInsuranceImg() {
        return comInsuranceImg;
    }
 
    public void setComInsuranceImg(String comInsuranceImg) {
        this.comInsuranceImg = comInsuranceImg;
    }
 
    public String getBusinessInsuranceTime() {
        return businessInsuranceTime;
    }
 
    public void setBusinessInsuranceTime(String businessInsuranceTime) {
        this.businessInsuranceTime = businessInsuranceTime;
    }
 
    public String getBusinessInsuranceImg() {
        return businessInsuranceImg;
    }
 
    public void setBusinessInsuranceImg(String businessInsuranceImg) {
        this.businessInsuranceImg = businessInsuranceImg;
    }
 
    public String getDutyInsuranceTime() {
        return dutyInsuranceTime;
    }
 
    public void setDutyInsuranceTime(String dutyInsuranceTime) {
        this.dutyInsuranceTime = dutyInsuranceTime;
    }
 
    public String getDutyInsuranceImg() {
        return dutyInsuranceImg;
    }
 
    public void setDutyInsuranceImg(String dutyInsuranceImg) {
        this.dutyInsuranceImg = dutyInsuranceImg;
    }
 
    public String getAnnualInspectionTime() {
        return annualInspectionTime;
    }
 
    public void setAnnualInspectionTime(String annualInspectionTime) {
        this.annualInspectionTime = annualInspectionTime;
    }
 
    public String getAnnualInspectionImg() {
        return annualInspectionImg;
    }
 
    public void setAnnualInspectionImg(String annualInspectionImg) {
        this.annualInspectionImg = annualInspectionImg;
    }
 
    public Integer getUserId() {
        return userId;
    }
 
    public void setUserId(Integer userId) {
        this.userId = userId;
    }
 
    public Integer getState() {
        return state;
    }
 
    public void setState(Integer state) {
        this.state = state;
    }
 
    public String getByInviteCode() {
        return byInviteCode;
    }
 
    public void setByInviteCode(String byInviteCode) {
        this.byInviteCode = byInviteCode;
    }
 
    public String getPhone() {
        return phone;
    }
 
    public void setPhone(String phone) {
        this.phone = phone;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public String getRealName() {
        return realName;
    }
 
    public void setRealName(String realName) {
        this.realName = realName;
    }
 
    public Integer getExcep() {
        return excep;
    }
 
    public void setExcep(Integer excep) {
        this.excep = excep;
    }
 
    @Override
    protected Serializable pkVal() {
        return this.id;
    }
 
    @Override
    public String toString() {
        return "AppDriverRide{" +
        "id=" + id +
        ", addTime=" + addTime +
        ", companyId=" + companyId +
        ", carType=" + carType +
        ", carNum=" + carNum +
        ", license=" + license +
        ", licenseImg=" + licenseImg +
        ", comInsuranceTime=" + comInsuranceTime +
        ", comInsuranceImg=" + comInsuranceImg +
        ", businessInsuranceTime=" + businessInsuranceTime +
        ", businessInsuranceImg=" + businessInsuranceImg +
        ", dutyInsuranceTime=" + dutyInsuranceTime +
        ", dutyInsuranceImg=" + dutyInsuranceImg +
        ", annualInspectionTime=" + annualInspectionTime +
        ", annualInspectionImg=" + annualInspectionImg +
        ", userId=" + userId +
        ", state=" + state +
        ", byInviteCode=" + byInviteCode +
        "}";
    }
}