Recipe.cs 883 B

1234567891011121314151617181920212223242526272829303132333435
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. using System.Text;
  5. namespace ProductionLineMonitor.Core.Models
  6. {
  7. /// <summary>
  8. /// 配方表
  9. /// </summary>
  10. [Table("Recipes")]
  11. public class Recipe : Base
  12. {
  13. /// <summary>
  14. /// 机种
  15. /// </summary>
  16. public string ModuleType { get; set; }
  17. /// <summary>
  18. /// 产线Id
  19. /// </summary>
  20. public string ProductionLineId { get; set; }
  21. /// <summary>
  22. /// 理论产能
  23. /// </summary>
  24. public int? TheoryCapacity { get; set; }
  25. /// <summary>
  26. /// 理论TT
  27. /// </summary>
  28. public float? TheoryTT { get; set; }
  29. /// <summary>
  30. /// 理论换料时间
  31. /// </summary>
  32. public float? TheoryRefueledTime { get; set; }
  33. }
  34. }