|
|
@ -6,12 +6,32 @@ namespace Shentun.Peis.AppointPatientRegisters |
|
|
{ |
|
|
{ |
|
|
public class AppointPatientRegisterInputDto |
|
|
public class AppointPatientRegisterInputDto |
|
|
{ |
|
|
{ |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 接口ID
|
|
|
|
|
|
/// </summary>
|
|
|
public Guid ThirdInterFaceId { get; set; } |
|
|
public Guid ThirdInterFaceId { 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>
|
|
|
|
|
|
/// 完成标志 0- 预约,1-取消预约
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
|
|
public char? CompleteFlag { get; set; } |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |