Files
shanghaigangxiangtuzhuangMES/ZR.Model/MES/wms/POJO/query/InventoryHistoryQuery.cs

24 lines
643 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace ZR.Model.MES.wms.POJO.query
{
public class InventoryHistoryQuery
{
// @ApiModelProperty("操作id出库、入库、库存移动表单id 精确匹配")
private long formId;
// @ApiModelProperty("操作类型 精确匹配")
private int formType;
// @ApiModelProperty("物料ID 精确匹配")
private long itemId;
// @ApiModelProperty("货架id 精确匹配")
private long warehouseId;
private long areaId;
private long rackId;
// @ApiModelProperty("库存变化 精确匹配")
private decimal quantity;
}
}