12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Xml.Serialization;
- namespace PaintDotNet.Base.Functionodel
- {
- /// <summary>
- /// 分析设置
- /// </summary>
- [XmlRoot("ROOT")]
- public class AnalyzeSettingModel
- {
- /// <summary>
- /// 模板路径
- /// </summary>
- [XmlElement("modulePath")]
- public string modulePath { get; set; }
- /// <summary>
- /// 存储路径
- /// </summary>
- [XmlElement("savePath")]
- public string savePath { get; set; }
- /// <summary>
- /// 项目编号
- /// </summary>
- [XmlElement("itemNumber")]
- public string itemNumber { get; set; }
- /// <summary>
- /// 评级日期
- /// </summary>
- [XmlElement("ratingDate")]
- public DateTime ratingDate { get; set; }
- /// <summary>
- /// 送检人
- /// </summary>
- [XmlElement("inspectionPerson")]
- public string inspectionPerson { get; set; }
- /// <summary>
- /// 联系人
- /// </summary>
- [XmlElement("contact")]
- public string contact { get; set; }
- /// <summary>
- /// 送检单位
- /// </summary>
- [XmlElement("inspectionDepartment")]
- public string inspectionDepartment { get; set; }
- /// <summary>
- /// 送检日期
- /// </summary>
- [XmlElement("inspectionDate")]
- public DateTime inspectionDate { get; set; }
- /// <summary>
- /// 分类名
- /// </summary>
- [XmlElement("analyzeClassify")]
- public string analyzeClassify { get; set; }
- /// <summary>
- /// 其他列表
- /// </summary>
- [XmlArrayAttribute("otherList")]
- public List<OthersInfo> otherList;
- public class OthersInfo
- {
- [XmlElement("name")]
- public string name { get; set; }
- [XmlElement("content")]
- public string content { get; set; }
- }
- }
- }
|