using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Mesnac.Action.ChemicalWeighing.Entity
{
    /// <summary>
    /// 实体类Pmt_recipe
    /// </summary>
    [Serializable]
    public class Pmt_recipe
    {
        #region 私有字段

        private string _iD;
        private string _equip_Code;
        private string _recipe_Code;
        private string _version;
        private string _recipe_Name;
        private string _mixer_line;
        private int? _recipe_type;
        private int? _recipe_Used;
        private int? _recipe_Verify;
        private decimal? _total_Weight;
        private decimal? _total_Error;
        private string _end_datetime;
        private string _remark;
        private int? _attach_User;
        private int? _groupBags;
        private int? _iF_FLAG;
        private int? _validity;

        #endregion

        #region 公有属性

        public string ID
        {
            get { return _iD; }
            set { _iD = value; }
        }

        public string Equip_Code
        {
            get { return _equip_Code; }
            set { _equip_Code = value; }
        }

        public string Recipe_Code
        {
            get { return _recipe_Code; }
            set { _recipe_Code = value; }
        }

        public string Version
        {
            get { return _version; }
            set { _version = value; }
        }

        public string Recipe_Name
        {
            get { return _recipe_Name; }
            set { _recipe_Name = 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 int? Recipe_Used
        {
            get { return _recipe_Used; }
            set { _recipe_Used = value; }
        }

        public int? Recipe_Verify
        {
            get { return _recipe_Verify; }
            set { _recipe_Verify = value; }
        }

        public decimal? Total_Weight
        {
            get { return _total_Weight; }
            set { _total_Weight = value; }
        }

        public decimal? Total_Error
        {
            get { return _total_Error; }
            set { _total_Error = value; }
        }

        public string End_datetime
        {
            get { return _end_datetime; }
            set { _end_datetime = value; }
        }

        public string Remark
        {
            get { return _remark; }
            set { _remark = value; }
        }

        public int? Attach_User
        {
            get { return _attach_User; }
            set { _attach_User = value; }
        }

        public int? GroupBags
        {
            get { return _groupBags; }
            set { _groupBags = value; }
        }

        public int? IF_FLAG
        {
            get { return _iF_FLAG; }
            set { _iF_FLAG = value; }
        }

        public int? Validity
        {
            get { return _validity; }
            set { _validity = value; }
        }

        #endregion
    }
}