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 { /// /// 生产线明细表 /// [Comment("生产线明细表")] public class ProdLineDetail { /// /// 主键 /// [Comment("主键")] [Key] public int RecID { get; set; } /// /// 域名 /// [Comment("域名")] public string Domain { get; set; } /// /// 生产线 /// [Comment("生产线")] public string Line { get; set; } /// /// 物料编号 /// [Comment("物料编号")] public string Part { get; set; } /// /// 单位标准产能=Uph /// [Comment("单位标准产能")] public decimal Rate { get; set; } /// /// 工序 /// [Comment("工序")] public int Op { get; set; } /// /// 是否有效:1-有效;0-无效 /// [Comment("是否有效")] public bool IsActive { get; set; } /// /// 当前产线准备时间(小时) /// [Comment("当前产线准备时间")] public decimal SetupTime { get; set; } /// /// 当前产线提前期(小时) /// [Comment("当前产线提前期")] public decimal OverlapTime { get; set; } /// /// 优先级 /// [Comment("优先级")] public decimal Sequence { get; set; } /// /// 设备编码 /// [Comment("设备编码")] public string InternalEquipmentCode { get; set; } /// /// 模具编码 /// [Comment("模具编码")] public string MoldTypeCode { get; set; } /// /// 工作中心编码 /// [Comment("工作中心编码")] public string Site { get; set; } /// /// 员工技能编码 /// [Comment("员工技能编码")] public string SkillNo { get; set; } /// /// 标准人数 /// [Comment("标准人数")] public decimal StandardStaffCount { get; set; } /// /// 工序类型:M机械,P人工 /// [Comment("工序类型")] public string OpType { get; set; } /// /// Bom版本 /// [Comment("Bom版本")] public string Bom { get; set; } } }