using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HL_FristAidPlatform_DTO { public class PatientLogDTO { /// /// /// public List Title { get; set; } /// /// /// public List> DateList { get; set; } /// /// /// public List PatientLogList { get; set; } } /// /// /// public class PatientLogInfo : Attribute { [Description("姓名")] public string Name { get; set; } [Description("性别")] /// /// 性别 /// public string Gender { get; set; } [Description("年龄")] /// /// 年龄 /// public string Age { get; set; } [Description("首次医疗接触")] /// /// 首次医疗接触 /// public string First_MC_Time { get; set; } [Description("诊断")] /// /// 诊断 /// public string CP_Diagnosis_Code { get; set; } [Description("接诊医生")] /// /// 接诊医生 /// public string First_Doctor_Name { get; set; } [Description("病人去向")] /// /// 病人去向 /// public string OutCome_Code { get; set; } } }