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