FmsDailyStoredReleaseStatusView.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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 FmsDailyStoredReleaseStatusView
  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 Name { get; set; }
  18. [StringLength(12)]
  19. public string Unit { get; set; }
  20. [Column(TypeName = "datetime")]
  21. public DateTime StoredDate { get; set; }
  22. public int MaterialStoredId { get; set; }
  23. public int? PurchaseOrderId { get; set; }
  24. public int UnitCost { get; set; }
  25. public int StockCount { get; set; }
  26. public int StoredCount { get; set; }
  27. public bool IsApproval { get; set; }
  28. public bool IsUse { get; set; }
  29. [Column(TypeName = "datetime")]
  30. public DateTime? ReleaseDate { get; set; }
  31. public short? ReleaseTypeId { get; set; }
  32. public int ReleaseCount { get; set; }
  33. public int ReleaseTotalCost { get; set; }
  34. public int? StockRemainCount { get; set; }
  35. public int? StockRemainAmount { get; set; }
  36. public int WarehouseId { get; set; }
  37. [Required]
  38. [StringLength(48)]
  39. public string WarehouseName { get; set; }
  40. [StringLength(100)]
  41. public string LocationInWarehouse { get; set; }
  42. public short? ReasonableStockCount { get; set; }
  43. public int? FirstClassId { get; set; }
  44. public int? SecondClassId { get; set; }
  45. public int? ThirdClassId { get; set; }
  46. }
  47. }