package com.doumee.dao.business.vo; 
 | 
  
 | 
import io.swagger.annotations.ApiModelProperty; 
 | 
import lombok.Data; 
 | 
  
 | 
import java.util.List; 
 | 
  
 | 
/** 
 | 
 * Created by IntelliJ IDEA. 
 | 
 * 
 | 
 * @Author : Rk 
 | 
 * @create 2024/5/23 14:56 
 | 
 */ 
 | 
@Data 
 | 
public class CabinetDetailVO { 
 | 
  
 | 
    @ApiModelProperty(value = "设备主键(系统内)") 
 | 
    private Integer id; 
 | 
  
 | 
    @ApiModelProperty(value = "设备编号") 
 | 
    private String code; 
 | 
  
 | 
    @ApiModelProperty(value = "设备名称") 
 | 
    private String name; 
 | 
  
 | 
    @ApiModelProperty(value = "设备ID") 
 | 
    private String devId; 
 | 
  
 | 
    @ApiModelProperty(value = "柜格总数") 
 | 
    private Integer gridNum; 
 | 
  
 | 
    @ApiModelProperty(value = "在位钥匙数") 
 | 
    private Integer onlineKeyNum; 
 | 
  
 | 
    @ApiModelProperty(value = "借出钥匙数") 
 | 
    private Integer outKeyNum; 
 | 
  
 | 
    @ApiModelProperty(value = "维修保养钥匙数") 
 | 
    private Integer serviceKeyNum; 
 | 
  
 | 
    @ApiModelProperty(value = "故障柜体数量") 
 | 
    private Integer errGridNum; 
 | 
  
 | 
    @ApiModelProperty(value = "未绑定柜体数量") 
 | 
    private Integer unBindGridNum; 
 | 
  
 | 
    @ApiModelProperty(value = "管理员主键") 
 | 
    private Integer memberId; 
 | 
  
 | 
  
 | 
    @ApiModelProperty(value = "柜格信息") 
 | 
    private List<CabinetGridInfoVO> cabinetGridInfoVOList; 
 | 
  
 | 
  
 | 
  
 | 
  
 | 
} 
 |