MoldToolList.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. using Microsoft.EntityFrameworkCore;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Business.Domain
  9. {
  10. /// <summary>
  11. /// 模具清单
  12. /// </summary>
  13. [Comment("模具清单")]
  14. public class MoldToolList
  15. {
  16. /// <summary>
  17. /// 主键
  18. /// </summary>
  19. [Comment("主键")]
  20. [Key]
  21. public int id { get; set; }
  22. /// <summary>
  23. /// 模具名称
  24. /// </summary>
  25. [Comment("模具名称")]
  26. public string MoldName { get; set; }
  27. /// <summary>
  28. /// 模具类型编码
  29. /// </summary>
  30. [Comment("模具类型编码")]
  31. public string MoldTypeCode { get; set; }
  32. /// <summary>
  33. /// 模具总数
  34. /// </summary>
  35. [Comment("模具总数")]
  36. public int MoldCount { get; set; }
  37. /// <summary>
  38. /// 模具维修数量
  39. /// </summary>
  40. [Comment("模具维修数量")]
  41. public int? ActiveMaintenanceMoldCount { get; set; }
  42. /// <summary>
  43. /// 预计释放时间
  44. /// </summary>
  45. [Comment("预计释放时间")]
  46. public DateTime? MoldMaintenanceReleaseTime { get; set; }
  47. }
  48. }