using FreeSql.DataAnnotations; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Mesnac.Action.ChemicalWeighing { /// ///生产计划 /// public class RT_plan { public RT_plan() { } /// /// Desc: /// Default: /// Nullable:False /// [Column(IsPrimary = true)] public int Dosing_Id { get; set; } /// /// Desc: /// Default: /// Nullable:False /// [Column(IsPrimary = true)] public string Plan_Id { get; set; } /// /// Desc: /// Default: /// Nullable:False /// [Column(IsPrimary = true)] public string Equip_Code { get; set; } /// /// 批次 /// public string Batch { get; set; } /// /// 产品名称 /// public string ProductName { 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 string Mixer_Line { 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: /// Nullable:True /// public int Plan_State { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Plan_StateText { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Plan_Date { get; set; } /// /// Desc:称量总重量 /// Default: /// Nullable:True /// public decimal Plan_TotalWeight { get; set; } /// /// Desc:称量总误差 /// Default: /// Nullable:True /// public decimal Plan_TotalError { get; set; } /// /// Desc:重传标识 /// Default: /// Nullable:True /// public int? IsRetransmission { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public int? Retransmission_Num { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public int? IF_FLAG { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string CylinderName { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string CylinderBarCode { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string PumpName { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string PumpBarCode { get; set; } /// /// 物料执行顺序——每执行一个+1,下一批次清空 /// public int Exec_Num { get; set; } public string Weighbridge { get; set; } } }