using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Business.Domain { /// /// 工艺流程表 /// public class RoutingOpDetail { /// /// 主键 /// [Comment("主键")] [Key] public int RecID { get; set; } /// /// 域名 /// [Comment("域名")] public string Domain { get; set; } /// /// 流程代码 /// [Comment("流程代码")] public string RoutingCode { get; set; } /// /// 描述 /// [Comment("描述")] public string Descr { get; set; } /// /// 关键工序 /// [Comment("关键工序")] public bool MilestoneOp { get; set; } /// /// 工序 /// [Comment("工序")] public int Op { get; set; } /// /// 父级工序 /// [Comment("父级工序")] public int ParentOp { get; set; } /// /// 运行时间(标准节拍) /// [Comment("运行时间")] public decimal RunTime { get; set; } /// /// 平行加工件数,下序开工前置数量 /// [Comment("平行加工件数")] public int? OverlapUnits { get; set; } /// /// 备注索引 /// [Comment("备注索引")] public int CommentIndex { get; set; } /// /// 是否有效:1-有效;0-无效 /// [Comment("是否有效")] public bool IsActive { get; set; } } }