mrzcc
2020-02-19 44f9cd5c403584c39c8bb893f69244e4835daab8
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
package com.java110.vo.api.owner;
 
import com.java110.vo.Vo;
 
import java.util.Date;
 
/**
 * @ClassName ApiFloorDataVo
 * @Description TODO
 * @Author wuxw
 * @Date 2019/4/24 11:18
 * @Version 1.0
 * add by wuxw 2019/4/24
 **/
public class ApiOwnerCarDataVo extends Vo {
    private String carColor;
    private String carBrand;
    private String carType;
    private String carTypeName;
    private String carNum;
    private String psId;
    private String remark;
    private String ownerId;
    private String userId;
    private String carId;
 
 
    private String createTime;
 
    public String getCarColor() {
        return carColor;
    }
 
    public void setCarColor(String carColor) {
        this.carColor = carColor;
    }
 
    public String getCarBrand() {
        return carBrand;
    }
 
    public void setCarBrand(String carBrand) {
        this.carBrand = carBrand;
    }
 
    public String getCarType() {
        return carType;
    }
 
    public void setCarType(String carType) {
        this.carType = carType;
    }
 
    public String getCarTypeName() {
        return carTypeName;
    }
 
    public void setCarTypeName(String carTypeName) {
        this.carTypeName = carTypeName;
    }
 
    public String getCarNum() {
        return carNum;
    }
 
    public void setCarNum(String carNum) {
        this.carNum = carNum;
    }
 
    public String getPsId() {
        return psId;
    }
 
    public void setPsId(String psId) {
        this.psId = psId;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public String getOwnerId() {
        return ownerId;
    }
 
    public void setOwnerId(String ownerId) {
        this.ownerId = ownerId;
    }
 
    public String getUserId() {
        return userId;
    }
 
    public void setUserId(String userId) {
        this.userId = userId;
    }
 
    public String getCarId() {
        return carId;
    }
 
    public void setCarId(String carId) {
        this.carId = carId;
    }
 
    public String getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(String createTime) {
        this.createTime = createTime;
    }
}