FmsShortStockStatusView.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. namespace FMSAdmin.Entities
  6. {
  7. public partial class FmsShortStockStatusView
  8. {
  9. public int SiteId { get; set; }
  10. public int BusinessFieldId { get; set; }
  11. public int MaterialId { get; set; }
  12. [Required]
  13. [StringLength(48)]
  14. public string MaterialCode { get; set; }
  15. [Required]
  16. [StringLength(48)]
  17. public string MaterialName { get; set; }
  18. [StringLength(12)]
  19. public string Unit { get; set; }
  20. public int? CurrentStoredCount { get; set; }
  21. public int? CurrentReleaseCount { get; set; }
  22. public int? CurrentCalcCount { get; set; }
  23. public int? LackCount { get; set; }
  24. public short? ReasonableStockCount { get; set; }
  25. public int? WarehouseId { get; set; }
  26. [StringLength(48)]
  27. public string WarehouseName { get; set; }
  28. public int? CurrentStoredPrice { get; set; }
  29. public int? CurrentReleasePrice { get; set; }
  30. public int? CurrentCalcPrice { get; set; }
  31. public int? FirstClassId { get; set; }
  32. public int? SecondClassId { get; set; }
  33. public int? ThirdClassId { get; set; }
  34. }
  35. }