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 公有属性 public string Plan_id { get; set; } public string Recipe_ID { get; set; } public string Equip_Code { get; set; } public int Weight_ID { get; set; } public string Material_Code { get; set; } public string Material_Name { get; set; } public float Set_Weight { get; set; } public float Set_Error { get; set; } public decimal CPK_Error { get; set; } public string Batch_number { get; set; } public string remark { get; set; } #endregion } }