| 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 int bindStatus; | 
|     //板号 | 
|     private String boardCode; | 
|     //钥匙柜编码 | 
|     private int cabinetId; | 
|     //钥匙柜名称 | 
|     private String cabinetName; | 
|     //车牌号 | 
|     private String carCode; | 
|     //车辆主键 | 
|     private int carId; | 
|     //通道号 | 
|     private String channelCode; | 
|     //编码 | 
|     private String code; | 
|     //主键 | 
|     private int id; | 
|     //备注 | 
|     private String info; | 
|     //钥匙编码 | 
|     private String keyCode; | 
|     //钥匙编码 | 
|     private int keyId; | 
|     //钥匙状态 0未绑定 1在位 2借出 3维修保养 | 
|     private int keyStatus; | 
|     //序列号 | 
|     private String serialNo; | 
|     //状态 0启用;1禁用 | 
|     private int status; | 
|     //运行状态 0正常 1故障 | 
|     private int workingStatus; | 
|   | 
|     private ObservableField<Boolean> isSelected = new ObservableField<>(false); | 
|     private ObservableField<Integer> text1Color = new ObservableField<>(0xff111111); | 
|     private ObservableField<Integer> text2Color = new ObservableField<>(0xff279baa); | 
|   | 
|     public int getBindStatus() { | 
|         return bindStatus; | 
|     } | 
|   | 
|     public void setBindStatus(int bindStatus) { | 
|         this.bindStatus = bindStatus; | 
|     } | 
|   | 
|     public String getBoardCode() { | 
|         return boardCode; | 
|     } | 
|   | 
|     public void setBoardCode(String boardCode) { | 
|         this.boardCode = boardCode; | 
|     } | 
|   | 
|     public int getCabinetId() { | 
|         return cabinetId; | 
|     } | 
|   | 
|     public void setCabinetId(int 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 int getCarId() { | 
|         return carId; | 
|     } | 
|   | 
|     public void setCarId(int 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 int getId() { | 
|         return id; | 
|     } | 
|   | 
|     public void setId(int 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 int getKeyId() { | 
|         return keyId; | 
|     } | 
|   | 
|     public void setKeyId(int keyId) { | 
|         this.keyId = keyId; | 
|     } | 
|   | 
|     public int getKeyStatus() { | 
|         return keyStatus; | 
|     } | 
|   | 
|     public void setKeyStatus(int keyStatus) { | 
|         this.keyStatus = keyStatus; | 
|     } | 
|   | 
|     public String getSerialNo() { | 
|         return serialNo; | 
|     } | 
|   | 
|     public void setSerialNo(String serialNo) { | 
|         this.serialNo = serialNo; | 
|     } | 
|   | 
|     public int getStatus() { | 
|         return status; | 
|     } | 
|   | 
|     public void setStatus(int status) { | 
|         this.status = status; | 
|     } | 
|   | 
|     public int getWorkingStatus() { | 
|         return workingStatus; | 
|     } | 
|   | 
|     public void setWorkingStatus(int workingStatus) { | 
|         this.workingStatus = workingStatus; | 
|     } | 
|   | 
|     public ObservableField<Boolean> getIsSelected() { | 
|         return isSelected; | 
|     } | 
|   | 
|     public ObservableField<Integer> getText1Color() { | 
|         return text1Color; | 
|     } | 
|   | 
|     public ObservableField<Integer> getText2Color() { | 
|         return text2Color; | 
|     } | 
| } |