diff --git a/src/Shentun.Peis.Application.Contracts/QueueRegisters/GetAppQueueRegisterByIdNoDto.cs b/src/Shentun.Peis.Application.Contracts/QueueRegisters/GetAppQueueRegisterByIdNoDto.cs new file mode 100644 index 0000000..9cbee38 --- /dev/null +++ b/src/Shentun.Peis.Application.Contracts/QueueRegisters/GetAppQueueRegisterByIdNoDto.cs @@ -0,0 +1,61 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Shentun.Peis.QueueRegisters +{ + public class GetAppQueueRegisterByIdNoDto + { + /// + /// 姓名 + /// + public string PatientName { get; set; } + + /// + /// 身份证号码 + /// + public string IdNo { get; set; } + + /// + /// 人员条码号 + /// + public string PatientRegisterNo { get; set; } + + /// + /// 性别 + /// + public string SexName { get; set;} + + /// + /// 手机号 + /// + public string MobileTelephone { get; set; } + + /// + /// 婚姻状况 + /// + public string MaritalStatusName { get; set; } + + /// + /// 照片 + /// + public string Photo { get; set; } + + + /// + /// 排队房间名称 + /// + public string RoomName { get; set; } + + + /// + /// 候诊人数 + /// + public int QueueCount { get; set; } + + /// + /// 完成标志 (o=候诊 1=已呼 2=过号) + /// + public char CompleteFlag { get; set; } + } +}