weimingfei
3 天以前 c7376f8d1091b70597ba4430a281496b585b386e
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
package com.doumee.keyCabinet.bean;
 
import androidx.databinding.ObservableField;
 
import com.doumee.lib_coremodel.util.luban.Luban;
 
import java.io.Serializable;
 
import lombok.Data;
 
public class KeyCabinetBean implements Serializable {
    //绑定状态 0未绑定;1已绑定
    private Integer bindStatus;
    //板号
    private String boardCode;
    //钥匙柜编码
    private Integer cabinetId;
    //钥匙柜名称
    private String cabinetName;
    //车牌号
    private String carCode;
    //车辆主键
    private Integer carId;
    //通道号
    private String channelCode;
    //编码
    private String code;
    //主键
    private Integer id;
    //备注
    private String info;
    //钥匙编码
    private String keyCode;
    //钥匙编码
    private Integer keyId;
    //钥匙状态 0未绑定 1在位 2借出 3维修保养
    private Integer keyStatus;
    //序列号
    private String serialNo;
    //状态 0启用;1禁用
    private Integer status;
    //运行状态 0正常 1故障
    private Integer workingStatus;
 
    private ObservableField<Boolean> isSelected = new ObservableField<>(false);
    private ObservableField<Integer> text1Color = new ObservableField<>(0xff111111);
    private ObservableField<Integer> text2Color = new ObservableField<>(0xff279baa);
 
    public Integer getBindStatus() {
        return bindStatus;
    }
 
    public void setBindStatus(Integer bindStatus) {
        this.bindStatus = bindStatus;
    }
 
    public String getBoardCode() {
        return boardCode;
    }
 
    public void setBoardCode(String boardCode) {
        this.boardCode = boardCode;
    }
 
    public Integer getCabinetId() {
        return cabinetId;
    }
 
    public void setCabinetId(Integer cabinetId) {
        this.cabinetId = cabinetId;
    }
 
    public String getCabinetName() {
        return cabinetName;
    }
 
    public void setCabinetName(String cabinetName) {
        this.cabinetName = cabinetName;
    }
 
    public String getCarCode() {
        return carCode;
    }
 
    public void setCarCode(String carCode) {
        this.carCode = carCode;
    }
 
    public Integer getCarId() {
        return carId;
    }
 
    public void setCarId(Integer carId) {
        this.carId = carId;
    }
 
    public String getChannelCode() {
        return channelCode;
    }
 
    public void setChannelCode(String channelCode) {
        this.channelCode = channelCode;
    }
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getInfo() {
        return info;
    }
 
    public void setInfo(String info) {
        this.info = info;
    }
 
    public String getKeyCode() {
        return keyCode;
    }
 
    public void setKeyCode(String keyCode) {
        this.keyCode = keyCode;
    }
 
    public Integer getKeyId() {
        return keyId;
    }
 
    public void setKeyId(Integer keyId) {
        this.keyId = keyId;
    }
 
    public Integer getKeyStatus() {
        return keyStatus;
    }
 
    public void setKeyStatus(Integer keyStatus) {
        this.keyStatus = keyStatus;
    }
 
    public String getSerialNo() {
        return serialNo;
    }
 
    public void setSerialNo(String serialNo) {
        this.serialNo = serialNo;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    public Integer getWorkingStatus() {
        return workingStatus;
    }
 
    public void setWorkingStatus(Integer workingStatus) {
        this.workingStatus = workingStatus;
    }
 
    public ObservableField<Boolean> getIsSelected() {
        return isSelected;
    }
 
    public ObservableField<Integer> getText1Color() {
        return text1Color;
    }
 
    public ObservableField<Integer> getText2Color() {
        return text2Color;
    }
}