using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Text; namespace ProductionLineMonitor.Core.Models { /// /// 配方表 /// [Table("Recipes")] public class Recipe : Base { /// /// 机种 /// public string ModuleType { get; set; } /// /// 产线Id /// public string ProductionLineId { get; set; } /// /// 理论产能 /// public int? TheoryCapacity { get; set; } /// /// 理论TT /// public float? TheoryTT { get; set; } /// /// 理论换料时间 /// public float? TheoryRefueledTime { get; set; } } }