From f25c1165d73c2c529ddfd5a9936a3e1e25b5583c Mon Sep 17 00:00:00 2001 From: wxd <123@qq.com> Date: Thu, 1 Aug 2024 16:34:36 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=AB=E5=8F=B7=E5=88=97=E8=A1=A8=E6=8E=92?= =?UTF-8?q?=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../GetAppQueueRegisterByIdNoDto.cs | 61 +++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 src/Shentun.Peis.Application.Contracts/QueueRegisters/GetAppQueueRegisterByIdNoDto.cs 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; } + } +}