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; } /// /// 租户ID /// [Comment("租户ID")] public long? tenant_id { get; set; } /// /// 物料编码 /// [Comment("物料编码")] public string RoutingCode { get; set; } /// /// 描述 /// [Comment("描述")] public string Descr { get; set; } /// /// 用于判断是组装热风包装 /// [Comment("用于判断是组装热风包装")] public string? Ufld1 { 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; } /// /// 报工批量 /// [Comment("报工批量")] public decimal? PackingQty { get; set; } /// /// SAP工序 /// [Comment("SAP工序")] public string StdOp { get; set; } } }