using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Mesnac.Action.ChemicalWeighing.Entity { /// /// 实体类LR_recipe /// [Serializable] public class LR_recipe { #region 私有字段 private string _plan_id; private string _equip_Code; private int? _weight_ID; private string _material_Code; private string _material_Name; private float _set_Weight; private float _set_Error; private decimal? _cPK_Error; private string _batch_number; private string _remark; #endregion #region 公有属性 public string Plan_id { get { return _plan_id; } set { _plan_id = value; } } public string Equip_Code { get { return _equip_Code; } set { _equip_Code = value; } } public int? Weight_ID { get { return _weight_ID; } set { _weight_ID = value; } } public string Material_Code { get { return _material_Code; } set { _material_Code = value; } } public string Material_Name { get { return _material_Name; } set { _material_Name = value; } } public float Set_Weight { get { return _set_Weight; } set { _set_Weight = value; } } public float Set_Error { get { return _set_Error; } set { _set_Error = value; } } public decimal? CPK_Error { get { return _cPK_Error; } set { _cPK_Error = value; } } public string Batch_number { get { return _batch_number; } set { _batch_number = value; } } public string remark { get { return _remark; } set { _remark = value; } } #endregion } }