| package com.doumee.dao.business.vo; | 
|   | 
| import com.baomidou.mybatisplus.annotation.IdType; | 
| import com.baomidou.mybatisplus.annotation.TableField; | 
| import com.baomidou.mybatisplus.annotation.TableId; | 
| import com.doumee.core.annotation.excel.ExcelColumn; | 
| import com.fasterxml.jackson.annotation.JsonFormat; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.util.Date; | 
|   | 
| /** | 
|  * Created by IntelliJ IDEA. | 
|  * | 
|  * @Author : Rk | 
|  * @create 2024/5/23 14:56 | 
|  */ | 
| @Data | 
| public class CabinetGridInfoVO { | 
|   | 
|     @ApiModelProperty(value = "主键", example = "1") | 
|     private Integer id; | 
|   | 
|     @ApiModelProperty(value = "编码") | 
|     private String code; | 
|   | 
|     @ApiModelProperty(value = "钥匙编码(关联jk_keys)", example = "1") | 
|     private Integer keyId; | 
|   | 
|     @ApiModelProperty(value = "柜体运行状态 0正常 1故障 ", example = "1") | 
|     private Integer workingStatus; | 
|   | 
|     @ApiModelProperty(value = "绑定状态 0未绑定;1已绑定", example = "1") | 
|     private Integer bindStatus; | 
|   | 
|     @ApiModelProperty(value = "钥匙状态 0未绑定 1在位 2借出 3维修保养", example = "1") | 
|     private Integer keyStatus; | 
|   | 
|     @ApiModelProperty(value = "板号") | 
|     private String boardCode; | 
|   | 
|     @ApiModelProperty(value = "通道号") | 
|     private String channelCode; | 
|   | 
|     @ApiModelProperty(value = "钥匙编号") | 
|     private String keyCode; | 
|   | 
|     @ApiModelProperty(value = "车牌号", example = "1") | 
|     private String carCode; | 
|   | 
|     @ApiModelProperty(value = "柜格状态:0启用;1=禁用") | 
|     private Integer status; | 
|   | 
| } |