using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Mesnac.Action.ChemicalWeighing.Entity { /// /// 实体类RT_Plan /// [Serializable] public class RT_Plan { #region 私有字段 private int? _dosing_Id; private string _plan_Id; private string _equip_Code; private int? _plan_Serial; private string _recipe_ID; private string _recipe_Code; private string _recipe_Name; private string _version; private string _mixer_Line; private int? _recipe_Type; private string _shift_Id; private string _shift_Class; private int? _plan_Num; private int? _real_Num; private int? _duration_Time; private string _start_Date; private string _end_Date; private string _weight_Man; private string _stock_Man; private string _plan_Batch; private int? _plan_State; private string _plan_StateText; private string _plan_Date; private int? _iF_FLAG; #endregion #region 公有属性 public int? Dosing_Id { set { this._dosing_Id = value; } get { return this._dosing_Id; } } public string Plan_Id { get { return _plan_Id; } set { _plan_Id = value; } } public string Equip_Code { set { this._equip_Code = value; } get { return this._equip_Code; } } public int? Plan_Serial { get { return _plan_Serial; } set { _plan_Serial = value; } } public string Recipe_ID { get { return _recipe_ID; } set { _recipe_ID = value; } } public string Recipe_Code { get { return _recipe_Code; } set { _recipe_Code = value; } } public string Recipe_Name { get { return _recipe_Name; } set { _recipe_Name = value; } } public string Version { get { return _version; } set { _version = value; } } public string Mixer_Line { get { return _mixer_Line; } set { _mixer_Line = value; } } public int? Recipe_Type { get { return _recipe_Type; } set { _recipe_Type = value; } } public string Shift_Id { get { return _shift_Id; } set { _shift_Id = value; } } public string Shift_Class { get { return _shift_Class; } set { _shift_Class = value; } } public int? Plan_Num { get { return _plan_Num; } set { _plan_Num = value; } } public int? Real_Num { get { return _real_Num; } set { _real_Num = value; } } public int? Duration_Time { get { return _duration_Time; } set { _duration_Time = value; } } public string Start_Date { get { return _start_Date; } set { _start_Date = value; } } public string End_Date { get { return _end_Date; } set { _end_Date = value; } } public string Weight_Man { get { return _weight_Man; } set { _weight_Man = value; } } public string Stock_Man { get { return _stock_Man; } set { _stock_Man = value; } } public string Plan_Batch { get { return _plan_Batch; } set { _plan_Batch = value; } } public int? Plan_State { get { return _plan_State; } set { _plan_State = value; } } public string Plan_StateText { get { return _plan_StateText; } set { _plan_StateText = value; } } public string Plan_Date { get { return _plan_Date; } set { _plan_Date = value; } } public int? IF_FLAG { get { return _iF_FLAG; } set { _iF_FLAG = value; } } #endregion } }