using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Mesnac.Action.ChemicalWeighing.Entity { /// /// 实体类Pmt_weigh /// [Serializable] public class Pmt_weigh { #region 公有属性 public string ID { get; set; } public string Equip_Code { get; set; } public string Recipe_ID { get; set; } public int Weight_Id { get; set; } public string Material_ID { get; set; } public decimal Set_Weight { get; set; } public decimal Set_Error { get; set; } public decimal Cpk_Error { get; set; } /// /// 理论固含 /// public decimal TheoryRate { get; set; } /// /// 是否有固含 /// public bool IsRate { get; set; } /// /// 固含量 /// public double RateWeight { get; set; } #endregion } }