using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; namespace NXWMS.Client.Model.AppModels.Result.Report { /// /// 仓库进销存报表 /// public class WarehouseInventoryResult { public string WarehouseCode { get; set; } public string WarehouseName { get; set; } public string MaterielTypeCode { get; set; } public string MaterielTypeName { get; set; } public string MaterielCode { get; set; } public string MaterielName { get; set; } public string UnitCode { get; set; } public string UnitName { get; set; } public string BatchNo { get; set; } public int? OpeningInventoryQTY { get; set; } public int? OutStockQTY { get; set; } public int? InStockQTY { get; set; } public int? FinalInventoryQTY { get; set; } public string CreateName { get; set; } public DateTime CreateTime { get; set; } public string UpdateName { get; set; } public DateTime UpdateTime { get; set; } } }