|
|
|
@ -0,0 +1,61 @@ |
|
|
|
using System; |
|
|
|
using System.Collections.Generic; |
|
|
|
using System.Text; |
|
|
|
|
|
|
|
namespace Shentun.Peis.QueueRegisters |
|
|
|
{ |
|
|
|
public class GetAppQueueRegisterByIdNoDto |
|
|
|
{ |
|
|
|
/// <summary>
|
|
|
|
/// 姓名
|
|
|
|
/// </summary>
|
|
|
|
public string PatientName { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 身份证号码
|
|
|
|
/// </summary>
|
|
|
|
public string IdNo { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 人员条码号
|
|
|
|
/// </summary>
|
|
|
|
public string PatientRegisterNo { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 性别
|
|
|
|
/// </summary>
|
|
|
|
public string SexName { get; set;} |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 手机号
|
|
|
|
/// </summary>
|
|
|
|
public string MobileTelephone { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 婚姻状况
|
|
|
|
/// </summary>
|
|
|
|
public string MaritalStatusName { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 照片
|
|
|
|
/// </summary>
|
|
|
|
public string Photo { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 排队房间名称
|
|
|
|
/// </summary>
|
|
|
|
public string RoomName { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 候诊人数
|
|
|
|
/// </summary>
|
|
|
|
public int QueueCount { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 完成标志 (o=候诊 1=已呼 2=过号)
|
|
|
|
/// </summary>
|
|
|
|
public char CompleteFlag { get; set; } |
|
|
|
} |
|
|
|
} |