FmsMonthlyStoredReleaseStatusView.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  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 FmsMonthlyStoredReleaseStatusView
  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. public int? StoredYear { get; set; }
  21. public int? StoredMonth { get; set; }
  22. public int? UnitCost { get; set; }
  23. public int? StockCount { get; set; }
  24. public int? StoredCount { get; set; }
  25. public int? ReleaseCount { get; set; }
  26. public int? ReleaseTotalCost { get; set; }
  27. public int? StockRemainCount { get; set; }
  28. public int? StockRemainAmount { get; set; }
  29. public int? FirstClassId { get; set; }
  30. public int? SecondClassId { get; set; }
  31. public int? ThirdClassId { get; set; }
  32. }
  33. }