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 CabinetBoardDataVO {
|
|
@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;
|
|
|
}
|