using NXWMS.Client.Model.CoreModels; using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; namespace NXWMS.Client.Model.AppModels.Condition.Report { /// /// 仓库进销存报表 /// public class WarehouseInventoryCondition : PageQueryConditionInfo { /// /// 物料类型信息 /// public string MaterielTypeInfo { get; set; } /// /// 物料信息 /// public string MaterielInfo { get; set; } /// /// 批次号 /// public string BatchNo { get; set; } /// /// 单位编码 /// public string UnitCode { get; set; } /// /// 期初库存数量 /// public decimal? OpeningInventoryQTY { get; set; } /// /// 发货数量 /// public decimal? OutStockQTY { get; set; } /// /// 收货数量 /// public decimal? InStockQTY { get; set; } /// /// 期末库存数量 /// public decimal? FinalInventoryQTY { get; set; } } }