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