using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Mesnac.Action.ChemicalWeighing.Entity { /// /// 实体类xl_weigh /// [Serializable] public class xl_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 int Station { get; set; } public double Set_Weight { get; set; } public double Set_Error { get; set; } public double Cpk_Error { get; set; } #endregion } }