using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DOAN.Model.MES.product { /// /// 工单排产 /// [SugarTable("pro_workorder_schedule")] public class ProWorkorderSchedule { ///// ///// 工位任务id ///// //[SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "task_id")] //public string TaskId { get; set; } /// /// 工单id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "fk_workorder_id")] public string FkWorkorderId { get; set; } /// /// 工艺路线id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "fk_work_route_id")] public int FkWorkRouteId { get; set; } /// /// 工序id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "fk_work_process_id")] public int FkWorkProcessId { get; set; } /// /// 工位id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "fk_work_station_id")] public int FkWorkStationId { get; set; } /// /// 设备id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "fk_device_id")] public int FkDeviceId { get; set; } /// /// 班组id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "fk_group_id")] public int FkGroupId { get; set; } /// /// 人员 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "fk_operator_id")] public string FkOperatorId { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "cREATED_TIME")] public DateTime? CreatedTime { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "cREATED_BY")] public string CreatedBy { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "uPDATED_BY")] public string UpdatedBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "uPDATED_TIME")] public DateTime? UpdatedTime { get; set; } } }