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;
|
|
|
}
|