自动化立体仓库 - WMS系统
LSH
2023-07-17 42f143b527febec4998056f4a28fcd59402e6e6e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.zy.asrs.entity.param;
 
import lombok.Data;
 
@Data
public class DigitalTwin {
    private Integer count; //总量
//    private Integer countO; //空总量
//    private Integer countF; //非空总量
    private int fqty; //在库库位
    private int oqty;//空库位
    private int uqty;//使用库位
    private int xqty;//禁用库位
//    private Integer artificialWarehousecount;  //平库总量
//    private Integer automatedWarehousecount;  //立库总量
//    private Integer artificialWarehouseF;  //平库非空总量
//    private Integer automatedWarehouseF;  //立库非空总量
//    private Integer artificialWarehouseO;  //平库空总量
//    private Integer automatedWarehouseO;  //立库空总量
    public DigitalTwin(){}
    public DigitalTwin(Integer count){
        this.count=count;
    }
}