huang
9 天以前 22e17b6db03ca58bc477a35ca067e55a09cffce7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.mes.vertical.details.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @Author : zhoush
 * @Date: 2025/6/30 13:26
 * @Description:
 */
@Data
public class VerticalSheetCageVO {
 
    @ApiModelProperty(value = "笼子号")
    private Integer deviceId;
    @ApiModelProperty(value = "格子号")
    private Integer slot;
    @ApiModelProperty(value = "数量")
    private Integer count;
    @ApiModelProperty(value = "使用率")
    private Integer percentage;
}