using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; using System.Text; namespace Shentun.Peis.PeisReports { public class GetPatientRegisterReportDto { /// /// 登记表ID /// public Guid PatientRegisterId { get; set; } /// /// 单位名称 /// public string CustomerOrgName { get; set; } /// /// 部门名称 /// public string DepartmentName { get; set; } /// /// 条码号 /// public string PatientRegisterNo { get; set; } /// /// 档案号 /// public string PatientNo { get; set; } /// /// 姓名 /// public string PatientName { get; set; } /// /// 手机号 /// public string? MobileTelephone { get; set; } /// /// 电话 /// public string? Telephone { get; set; } /// /// 分组名称 /// public string? CustomerOrgGroupName { get; set; } /// /// 套餐名称 /// public string? MedicalPackageName { get; set; } /// /// 标志(0 预登记 1正式登记 2部分已检 3已总检) /// public char? CompleteFlag { get; set; } /// /// 审核状态 /// public char? IsAudit { get; set; } /// /// 报告打印状态 检查ReportPrintTimes次数 大于0为已打印 /// public char? IsReportPrint { get; set; } /// /// 打印人 /// public string ReportPrintName { get; set; } /// /// 是否已经上传web /// public char? IsUpload { get; set; } /// /// 是否上传预约备单到WEB /// public char? IsUploadAppoint { get; set; } /// /// 体检类别名称 /// public string? MedicalTypeName { get; set; } /// /// 人员类别 /// public string? PersonnelTypeName { get; set; } /// /// 性别 /// public string? SexName { get; set; } /// /// 出生日期 /// public string? BirthDate { get; set; } /// /// 年龄 /// public short? Age { get; set; } /// /// 身份证号 /// public string? IdNo { get; set; } /// /// 邮箱 /// public string? Email { get; set; } /// /// 地址 /// public string? Address { get; set; } /// /// 是否为职业病 /// public char IsPatientOccupationalDisease { get; set; } = 'N'; /// /// 婚姻状况名称 /// public string MaritalStatusName { get; set; } /// /// 登记人 /// public string RegisterName { get; set; } /// /// 登记日期 /// public string RegisterDate { get; set; } /// /// 体检日期 1999-01-01 /// public string MedicalStartDate { get; set; } /// /// 总检医生 /// public string SummaryDoctorName { get; set; } /// /// 总检时间 1999-01-01 /// public string SummaryDate { get; set; } /// /// 审核医生 /// public string AuditDoctorName { get; set; } /// /// 审核日期 /// public string AuditDate { get; set; } /// /// 报告是否领取 /// public char IsReceiveReport { get; set; } /// /// 报告领取人 /// public string ReportReceiveName { get; set; } /// /// 报告领取时间 /// public string ReportReceiveDate { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 报告模板id /// public string ReportFormatTemplateId { get; set; } } }