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