using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Serialization; namespace SmartCoalApplication.Base.MeasureModel { /// /// 公式 /// public class MeasureMaintenanceFormula { public MeasureMaintenanceFormula() { FormulaExpressionLineID = new List(); isConductiveCloth = false; isFanweibuchang = false; isErzhichuli = false; } /// /// Id /// [XmlElement("FormulaId")] public string FormulaId { get; set; } /// /// 父级Id /// [XmlElement("FormulaParentId")] public string FormulaParentId { get; set; } /// /// 孔型 /// [XmlElement("HoleType")] public string HoleType { get; set; } /// /// 二级孔型id /// [XmlElement("HoleTypeId")] public string HoleTypeId { get; set; } /// /// 一级孔型id /// [XmlElement("FatherHoleTypeId")] public string FatherHoleTypeId { get; set; } /// /// 检验项目 /// [XmlElement("TestItems")] public string TestItems { get; set; } /// /// 规格 /// [XmlElement("Specification")] public string Specification { get; set; } /// /// 名称 /// [XmlElement("FormulaName")] public string FormulaName { get; set; } /// /// 公式对应表达式 /// [XmlElement("FormulaExpression")] public string FormulaExpression { get; set; } /// /// 公式线对应ID /// [XmlElement("FormulaExpressionLineID")] public List FormulaExpressionLineID { get; set; } /// /// 是否是导电布 /// [XmlElement("isConductiveCloth")] public bool isConductiveCloth { get; set; } /// /// 是否是范围补偿 /// [XmlElement("isFanweibuchang")] public bool isFanweibuchang { get; set; } /// /// 是否是二值处理 /// [XmlElement("isErzhichuli")] public bool isErzhichuli { get; set; } } }