WarehouseInventoryResult.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Runtime.Serialization;
  5. using System.Text;
  6. namespace NXWMS.Client.Model.AppModels.Result.Report
  7. {
  8. /// <summary>
  9. /// 仓库进销存报表
  10. /// </summary>
  11. public class WarehouseInventoryResult
  12. {
  13. public string WarehouseCode { get; set; }
  14. public string WarehouseName { get; set; }
  15. public string MaterielTypeCode { get; set; }
  16. public string MaterielTypeName { get; set; }
  17. public string MaterielCode { get; set; }
  18. public string MaterielName { get; set; }
  19. public string UnitCode { get; set; }
  20. public string UnitName { get; set; }
  21. public string BatchNo { get; set; }
  22. public int? OpeningInventoryQTY { get; set; }
  23. public int? OutStockQTY { get; set; }
  24. public int? InStockQTY { get; set; }
  25. public int? FinalInventoryQTY { get; set; }
  26. public string CreateName { get; set; }
  27. public DateTime CreateTime { get; set; }
  28. public string UpdateName { get; set; }
  29. public DateTime UpdateTime { get; set; }
  30. }
  31. }