自动化立体仓库 - WMS系统
#
LSH
2023-12-27 9b14697f5146ade2e81db8269824f79c9bc6ac62
src/main/java/com/zy/asrs/entity/param/DigitalTwin.java
@@ -5,18 +5,22 @@
@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;  //立库空总量
    private Integer countL; //立库总量
    private int fqtyL; //立库在库库位
    private int oqtyL;//立库空库位
    private int uqtyL;//立库使用库位
    private int xqtyL;//立库禁用库位
    private Integer countP; //平库总量
    private int fqtyP; //平库在库库位
    private int oqtyP;//平库空库位
    private int uqtyP;//平库使用库位
    private int xqtyP;//平库禁用库位
    public DigitalTwin(){}
    public DigitalTwin(Integer count){
        this.count=count;