namespace Tnb.WarehouseMgr.Entities.Dto
{
///
/// 入库策略输入参数
///
public class InStockStrategyQuery
{
///
/// 仓库Id
///
public string warehouse_id { get; set; }
///
/// 物料Id
///
public string material_id { get; set; }
///
/// 批次
///
public string code_batch { get; set; }
///
/// 业务类型s
///
public int BllType { get; set; }
public int Size { get; set; }
}
}