using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace ZR.Model.MES.pro { /// /// 工单时间流转表 /// [SugarTable("pro_workordertime_step")] public class ProWorkordertimeStep { /// /// /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 工单id /// [SugarColumn(ColumnName = "workoder_id")] public string WorkoderId { get; set; } /// /// 工单开始时间 /// [SugarColumn(ColumnName = "workorder_time")] public DateTime? WorkorderTime { get; set; } /// /// 首检结束时间 /// [SugarColumn(ColumnName = "first_inspect_time")] public DateTime? FirstInspectTime { get; set; } /// /// 二检结束时间 /// [SugarColumn(ColumnName = "again_inspect_time")] public DateTime? AgainInspectTime { get; set; } /// /// 三检结束时间 /// [SugarColumn(ColumnName = "final_inspect_time")] public DateTime? FinalInspectTime { get; set; } /// /// 包装时间 /// [SugarColumn(ColumnName = "pack_time")] public DateTime? PackTime { 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; } } }