|
|
@ -6,12 +6,32 @@ namespace Shentun.WebPeis.AppointPatientRegisters |
|
|
{ |
|
|
{ |
|
|
public class AppointPatientRegisterInputDto |
|
|
public class AppointPatientRegisterInputDto |
|
|
{ |
|
|
{ |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 体检中心ID
|
|
|
|
|
|
/// </summary>
|
|
|
public Guid? MedicalCenterId { get; set; } |
|
|
public Guid? MedicalCenterId { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 身份证号
|
|
|
|
|
|
/// </summary>
|
|
|
public string? IdNo { get; set; } |
|
|
public string? IdNo { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 手机号
|
|
|
|
|
|
/// </summary>
|
|
|
public string? MobilePhone { get; set; } |
|
|
public string? MobilePhone { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 预约开始日期
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
public DateTime? AppointStartDate { get; set; } |
|
|
public DateTime? AppointStartDate { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 预约结束日期
|
|
|
|
|
|
/// </summary>
|
|
|
public DateTime? AppointStopDate { get; set; } |
|
|
public DateTime? AppointStopDate { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 完成标志
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
|
|
public char? CompleteFlag { get; set; } |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |