java110
2020-05-29 d040ab399d9a18d3a2581790d3cd5cd4b74b5325
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
package com.java110.po.car;
 
import java.io.Serializable;
 
/**
 * @ClassName OwnerCarPo
 * @Description TODO
 * @Author wuxw
 * @Date 2020/5/29 14:56
 * @Version 1.0
 * add by wuxw 2020/5/29
 **/
public class OwnerCarPo implements Serializable {
 
    private String carId;
    private String ownerId;
    private String carNum;
    private String carBrand;
    private String carType;
    private String carColor;
    private String psId;
    private String userId;
    private String remark;
 
    private String communityId;
 
    public String getCarId() {
        return carId;
    }
 
    public void setCarId(String carId) {
        this.carId = carId;
    }
 
    public String getOwnerId() {
        return ownerId;
    }
 
    public void setOwnerId(String ownerId) {
        this.ownerId = ownerId;
    }
 
    public String getCarNum() {
        return carNum;
    }
 
    public void setCarNum(String carNum) {
        this.carNum = carNum;
    }
 
    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 getCarColor() {
        return carColor;
    }
 
    public void setCarColor(String carColor) {
        this.carColor = carColor;
    }
 
    public String getPsId() {
        return psId;
    }
 
    public void setPsId(String psId) {
        this.psId = psId;
    }
 
    public String getUserId() {
        return userId;
    }
 
    public void setUserId(String userId) {
        this.userId = userId;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public String getCommunityId() {
        return communityId;
    }
 
    public void setCommunityId(String communityId) {
        this.communityId = communityId;
    }
}