rk
昨天 cc3c6537dcd5bc7b8eb98046dfcaf0ad93484d60
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
package com.doumee.dao.business.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * Created by IntelliJ IDEA.
 *
 * @Author : Rk
 * @create 2024/5/23 14:56
 */
@Data
public class CabinetBoardWaningDataVO {
 
    @ApiModelProperty(value = "酒精检测告警数量")
    private Integer gridNum;
 
    @ApiModelProperty(value = "柜门未关闭告警数量")
    private Integer onlineKeyNum;
 
    @ApiModelProperty(value = "超时未归还告警")
    private Integer outKeyNum;
 
    @ApiModelProperty(value = "维修保养钥匙数")
    private Integer serviceKeyNum;
 
    @ApiModelProperty(value = "未绑定柜体数量")
    private Integer unBindGridNum;
 
 
}