using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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; }
}
}