using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DOAN.Model.MES.product { /// /// 实现工单选择线体的关联表 /// [SugarTable("pro_rel_workorder_line_body")] public class ProRelWorkorderLineBody { /// /// 工单主键id 雪花id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "fk_workorder_id")] public string FkWorkorderId { get; set; } /// /// 工序id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "fk_process_id")] public int FkProcessId { get; set; } /// /// 工位id /// [SugarColumn(IsNullable=true,IsIdentity = false, ColumnName = "fk_station_id")] public int FkStationId { get; set; } /// /// 顺序 /// public int? Sort { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "cREATED_BY")] public string CreatedBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "cREATED_TIME")] public DateTime? CreatedTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "uPDATED_BY")] public string UpdatedBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "uPDATED_TIME")] public DateTime? UpdatedTime { get; set; } } }