using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// MedicalHospitalReportList Data Structure. /// [Serializable] public class MedicalHospitalReportList : AopObject { /// /// 报告产出日期 格式为yyyy-MM-dd HH:mm:ss。 /// [XmlElement("report_date")] public string ReportDate { get; set; } /// /// 报告说明 /// [XmlElement("report_desc")] public string ReportDesc { get; set; } /// /// 报告详情连接 /// [XmlElement("report_link")] public string ReportLink { get; set; } /// /// 报告名称 /// [XmlElement("report_name")] public string ReportName { get; set; } /// /// 报告类型: CHECK_REPORT 检查报告 EXAM_REPORT检验报告 /// [XmlElement("report_type")] public string ReportType { get; set; } } }