using System; using System.Linq; using System.Text; using SqlSugar; namespace Admin.Core.Model { /// /// /// [SugarTable("LR_plan", "cwss_xl")] public class LR_plan { /// /// Desc:主键 /// Default: /// Nullable:True /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public string ID { get; set; } /// /// Desc: /// Default: /// Nullable:False /// public string Dosing_Id { get; set; } /// /// Desc: /// Default: /// Nullable:False /// public string Plan_Id { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Equip_Code { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public int? Plan_Serial { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Recipe_ID { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Recipe_Code { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Recipe_Name { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Version { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public int? Recipe_Type { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Shift_Id { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Shift_Class { get; set; } /// /// Desc:计划批次 /// Default: /// Nullable:True /// public int? Plan_Num { get; set; } /// /// Desc:执行批次 /// Default: /// Nullable:True /// public int? Real_Num { get; set; } /// /// Desc:工期_时间 /// Default: /// Nullable:True /// public int? Duration_Time { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Start_Date { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string End_Date { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Weight_Man { get; set; } /// /// Desc:管理员 /// Default: /// Nullable:True /// public string Stock_Man { get; set; } /// /// Desc:计划批次 /// Default: /// Nullable:True /// public string Plan_Batch { get; set; } /// /// Desc: /// Default:1 /// Nullable:True /// public int? Plan_State { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Plan_Date { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public decimal? Total_Weight { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public decimal? Total_Error { get; set; } /// /// Desc: /// Default:0 /// Nullable:True /// public int? IF_FLAG { get; set; } /// /// Desc:是否重传 /// Default:0 /// Nullable:True /// public int? IsRetransmission { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public int? Retransmission_Num { get; set; } /// /// Desc: /// Default:DateTime.Now /// Nullable:True /// public DateTime? CreateTime { get; set; } } }