WMS相关文件添加,仅添加文件,可启动但未测试

This commit is contained in:
赵正易
2024-03-08 08:28:14 +08:00
parent a0ae0c35b0
commit b400063e1a
83 changed files with 3767 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
namespace ZR.Model.MES.wms.POJO.query
{
public class InventoryQuery
{
// @ApiModelProperty("物料ID 精确匹配")
private long itemId;
// @ApiModelProperty("货架id 精确匹配")
private long warehouseId;
// @ApiModelProperty("看板类型")
private long panelType;
// @ApiModelProperty("区 id")
private long areaId;
//@ApiModelProperty("货架 id")
private long rackId;
// @ApiModelProperty("库存 起始值")
private decimal quantityStart;
// @ApiModelProperty("库存 结束值")
private decimal quantityEnd;
}
}