rk
17 小时以前 d5397923196daf2c54f00e927492261d66e1feb2
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
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 List<CabinetGridInfoVO> cabinetGridInfoVOList;
 
 
 
 
}