123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- 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
- {
- /// <summary>
- /// 公式
- /// </summary>
- public class MeasureMaintenanceFormula
- {
- public MeasureMaintenanceFormula()
- {
- FormulaExpressionLineID = new List<string>();
- isConductiveCloth = false;
- isFanweibuchang = false;
- isErzhichuli = false;
- }
- /// <summary>
- /// Id
- /// </summary>
- [XmlElement("FormulaId")]
- public string FormulaId { get; set; }
- /// <summary>
- /// 父级Id
- /// </summary>
- [XmlElement("FormulaParentId")]
- public string FormulaParentId { get; set; }
- /// <summary>
- /// 孔型
- /// </summary>
- [XmlElement("HoleType")]
- public string HoleType { get; set; }
- /// <summary>
- /// 二级孔型id
- /// </summary>
- [XmlElement("HoleTypeId")]
- public string HoleTypeId { get; set; }
- /// <summary>
- /// 一级孔型id
- /// </summary>
- [XmlElement("FatherHoleTypeId")]
- public string FatherHoleTypeId { get; set; }
- /// <summary>
- /// 检验项目
- /// </summary>
- [XmlElement("TestItems")]
- public string TestItems { get; set; }
- /// <summary>
- /// 规格
- /// </summary>
- [XmlElement("Specification")]
- public string Specification { get; set; }
- /// <summary>
- /// 名称
- /// </summary>
- [XmlElement("FormulaName")]
- public string FormulaName { get; set; }
- /// <summary>
- /// 公式对应表达式
- /// </summary>
- [XmlElement("FormulaExpression")]
- public string FormulaExpression { get; set; }
- /// <summary>
- /// 公式线对应ID
- /// </summary>
- [XmlElement("FormulaExpressionLineID")]
- public List<string> FormulaExpressionLineID { get; set; }
- /// <summary>
- /// 是否是导电布
- /// </summary>
- [XmlElement("isConductiveCloth")]
- public bool isConductiveCloth { get; set; }
- /// <summary>
- /// 是否是范围补偿
- /// </summary>
- [XmlElement("isFanweibuchang")]
- public bool isFanweibuchang { get; set; }
- /// <summary>
- /// 是否是二值处理
- /// </summary>
- [XmlElement("isErzhichuli")]
- public bool isErzhichuli { get; set; }
- }
- }
|