1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Xml.Serialization;
- namespace PaintDotNet.Base.SettingModel
- {
- /// <summary>
- /// 工件维护
- /// </summary>
- [XmlRoot("ROOT")]
- public class WorkpieceMaintenanceModel
- {
- /// <summary>
- /// 数据属性(元素)树状图
- /// </summary>
- [XmlArrayAttribute("AttributeMapAllDataNodes")]
- public List<Workpiece> Workpieces { get; set; }
- public class Workpiece
- {
- /// <summary>
- /// 工件名称
- /// </summary>
- [XmlElement("Name")]
- public string Name { get; set; }
- /// <summary>
- /// 工件类型
- /// </summary>
- [XmlElement("Type")]
- public string Type { get; set; }
- /// <summary>
- /// 工件a名称
- /// </summary>
- [XmlElement("NameA")]
- public string NameA { get; set; }
- /// <summary>
- /// 工件a标准值
- /// </summary>
- [XmlElement("StandardValueA")]
- public string StandardValueA { get; set; }
- /// <summary>
- /// 工件a误差
- /// </summary>
- [XmlElement("ErrorA")]
- public string ErrorA { get; set; }
- /// <summary>
- /// 工件B名称
- /// </summary>
- [XmlElement("NameB")]
- public string NameB { get; set; }
- /// <summary>
- /// 工件B标准值
- /// </summary>
- [XmlElement("StandardValueB")]
- public string StandardValueB { get; set; }
- /// <summary>
- /// 工件B误差
- /// </summary>
- [XmlElement("ErrorB")]
- public string ErrorB { get; set; }
- /// <summary>
- /// 工件C名称
- /// </summary>
- [XmlElement("NameC")]
- public string NameC { get; set; }
- /// <summary>
- /// 工件C标准值
- /// </summary>
- [XmlElement("StandardValueC")]
- public string StandardValueC { get; set; }
- /// <summary>
- /// 工件C误差
- /// </summary>
- [XmlElement("ErrorC")]
- public string ErrorC { get; set; }
- /// <summary>
- /// 工件D名称
- /// </summary>
- [XmlElement("NameD")]
- public string NameD { get; set; }
- /// <summary>
- /// 工件D标准值
- /// </summary>
- [XmlElement("StandardValueD")]
- public string StandardValueD { get; set; }
- /// <summary>
- /// 工件D误差
- /// </summary>
- [XmlElement("ErrorD")]
- public string ErrorD { get; set; }
- }
- }
- }
|