123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Xml.Serialization;
- namespace Metis.AutoAnalysis
- {
- [XmlRoot("ROOT")]
- public class AutoAnalyzeSettingModel
- {
- /// <summary>
- /// 模板路径
- /// </summary>
- [XmlElement("modulePath")]
- public string modulePath { get; set; }
- /// <summary>
- /// 存储路径
- /// </summary>
- [XmlElement("savePath")]
- public string savePath { get; set; }
- /// <summary>
- /// 客户名称
- /// </summary>
- [XmlElement("customerName")]
- public string customerName { get; set; }
- /// <summary>
- /// 联系方式
- /// </summary>
- [XmlElement("telephone")]
- public string telephone { get; set; }
- /// <summary>
- /// 样品名称
- /// </summary>
- [XmlElement("sampleName")]
- public string sampleName { get; set; }
- /// <summary>
- /// 样品说明
- /// </summary>
- [XmlElement("sampleDescription")]
- public string sampleDescription { get; set; }
- /// <summary>
- /// 检测项目
- /// </summary>
- [XmlElement("checkItem")]
- public string checkItem { get; set; }
- /// <summary>
- /// 方法标准
- /// </summary>
- [XmlElement("methodStandard")]
- public string methodStandard { get; set; }
- /// <summary>
- /// 接收日期
- /// </summary>
- [XmlElement("receiveDate")]
- public DateTime receiveDate { get; set; }
- /// <summary>
- /// 检测日期
- /// </summary>
- [XmlElement("checkDate")]
- public DateTime checkDate { get; set; }
- /// <summary>
- /// 报告日期
- /// </summary>
- [XmlElement("reportDate")]
- public DateTime reportDate { get; set; }
- /// <summary>
- /// 报告编号
- /// </summary>
- [XmlElement("reportNumber")]
- public string reportNumber { get; set; }
- /// <summary>
- /// 检测区域
- /// </summary>
- [XmlElement("checkRegion")]
- public string checkRegion { get; set; }
- /// <summary>
- /// 检测环境
- /// </summary>
- [XmlElement("checkEnvironment")]
- public string checkEnvironment { get; set; }
- /// <summary>
- /// 分类名
- /// </summary>
- [XmlElement("analyzeClassify")]
- public string analyzeClassify { get; set; }
- public AutoAnalyzeSettingModel Clone()
- {
- AutoAnalyzeSettingModel a = new AutoAnalyzeSettingModel();
- a.analyzeClassify = this.analyzeClassify;
- a.checkDate = this.checkDate;
- a.checkEnvironment = this.checkEnvironment;
- a.checkItem = this.checkItem;
- a.checkRegion = this.checkRegion;
- a.customerName = this.customerName;
- a.methodStandard = this.methodStandard;
- a.modulePath = this.modulePath;
- a.receiveDate = this.receiveDate;
- a.reportDate = this.reportDate;
- a.reportNumber = this.reportNumber;
- a.sampleDescription = this.sampleDescription;
- a.sampleName = this.sampleName;
- a.savePath = this.savePath;
- a.telephone = this.telephone;
- return a;
- }
- }
- }
|