|
|
|
@ -34,8 +34,8 @@ namespace Shentun.Peis.Models |
|
|
|
|
|
|
|
IsLock = 'N'; |
|
|
|
CompleteFlag = RegisterCheckCompleteFlag.UnChecked; |
|
|
|
CriticalValueFlag = '0'; |
|
|
|
CriticalValueProcessFlag = '0'; |
|
|
|
IsCriticalValue = '0'; |
|
|
|
//CriticalValueProcessFlag = '0';
|
|
|
|
IsAudit = 'N'; |
|
|
|
} |
|
|
|
/// <summary>
|
|
|
|
@ -72,46 +72,132 @@ namespace Shentun.Peis.Models |
|
|
|
/// </summary>
|
|
|
|
[Column("check_request_print_times")] |
|
|
|
public short CheckRequestPrintTimes { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 危急值
|
|
|
|
/// </summary>
|
|
|
|
[Column("critical_value")] |
|
|
|
[StringLength(100)] |
|
|
|
[StringLength(300)] |
|
|
|
public string? CriticalValue { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 危急值范围
|
|
|
|
/// </summary>
|
|
|
|
[Column("critical_range_value")] |
|
|
|
[StringLength(300)] |
|
|
|
public string? CriticalRangeValue { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 危急值标志
|
|
|
|
/// </summary>
|
|
|
|
[Column("critical_value_flag")] |
|
|
|
[Column("is_critical_value")] |
|
|
|
[MaxLength(1)] |
|
|
|
public char? CriticalValueFlag { get; set; } |
|
|
|
public char? IsCriticalValue { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 危急值处理内容
|
|
|
|
/// </summary>
|
|
|
|
[Column("critical_value_process_content")] |
|
|
|
[StringLength(100)] |
|
|
|
public string? CriticalValueProcessContent { get; set; } |
|
|
|
[Column("critical_value_content")] |
|
|
|
[StringLength(300)] |
|
|
|
public string? CriticalValueContent { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 危急值创建者ID
|
|
|
|
/// </summary>
|
|
|
|
[Column("critical_value_creator_id")] |
|
|
|
public Guid? CriticalValueCreatorId { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 危急值创建日期
|
|
|
|
/// </summary>
|
|
|
|
[Column("critical_value_creation_time")] |
|
|
|
public DateTime? CriticalValueCreationTime { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 危急值处理标志
|
|
|
|
/// 危急值创建短信完成 Y-N,预留字段,暂时不用
|
|
|
|
/// </summary>
|
|
|
|
[Column("critical_value_process_flag")] |
|
|
|
[Column("is_critical_value_sms_complete")] |
|
|
|
[MaxLength(1)] |
|
|
|
public char? CriticalValueProcessFlag { get; set; } |
|
|
|
public char? IsCriticalValueSmsComplete { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 危急值处理医生
|
|
|
|
/// 危急值短信发送者ID 预留字段,暂时不用
|
|
|
|
/// </summary>
|
|
|
|
[Column("critical_value_process_doctor")] |
|
|
|
[StringLength(16)] |
|
|
|
public string? CriticalValueProcessDoctor { get; set; } |
|
|
|
[Column("critical_value_sms_creator_id")] |
|
|
|
public Guid? CriticalValueSmsCreatorId { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 危急值处理日期
|
|
|
|
/// 危急值创建电话随访完成
|
|
|
|
/// </summary>
|
|
|
|
[Column("critical_value_process_date")] |
|
|
|
public DateTime? CriticalValueProcessDate { get; set; } |
|
|
|
[Column("is_critical_value_phone_complete")] |
|
|
|
[MaxLength(1)] |
|
|
|
public char? IsCriticalValuePhoneComplete { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 危急值创建日期
|
|
|
|
/// 危急值电话随访人员ID
|
|
|
|
/// </summary>
|
|
|
|
[Column("critical_value_phone_creator_id")] |
|
|
|
public Guid? CriticalValuePhoneCreatorId { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 危急值是否审核 Y-N
|
|
|
|
/// </summary>
|
|
|
|
[Column("is_critical_value_audit")] |
|
|
|
[MaxLength(1)] |
|
|
|
public char? IsCriticalValueAudit { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 该项目要否要复查 Y-N
|
|
|
|
/// </summary>
|
|
|
|
[Column("is_review")] |
|
|
|
[MaxLength(1)] |
|
|
|
public char? IsReview { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 随访标志 0-无,1-需要创建随访,2-已经创建随访
|
|
|
|
/// </summary>
|
|
|
|
[Column("follow_up_flag")] |
|
|
|
[MaxLength(1)] |
|
|
|
public char? FollowUpFlag { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 随访创建时间
|
|
|
|
/// </summary>
|
|
|
|
[Column("critical_value_create_date")] |
|
|
|
public DateTime? CriticalValueCreateDate { get; set; } |
|
|
|
[Column("follow_up_creation_time")] |
|
|
|
public DateTime? FollowUpCreationTime { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 随访创建者ID
|
|
|
|
/// </summary>
|
|
|
|
[Column("follow_up_creator_id")] |
|
|
|
public Guid? FollowUpCreatorId { get; set; } |
|
|
|
|
|
|
|
///// <summary>
|
|
|
|
///// 危急值处理标志
|
|
|
|
///// </summary>
|
|
|
|
//[Column("critical_value_process_flag")]
|
|
|
|
//[MaxLength(1)]
|
|
|
|
//public char? CriticalValueProcessFlag { get; set; }
|
|
|
|
///// <summary>
|
|
|
|
///// 危急值处理医生
|
|
|
|
///// </summary>
|
|
|
|
//[Column("critical_value_process_doctor")]
|
|
|
|
//[StringLength(16)]
|
|
|
|
//public string? CriticalValueProcessDoctor { get; set; }
|
|
|
|
///// <summary>
|
|
|
|
///// 危急值处理日期
|
|
|
|
///// </summary>
|
|
|
|
//[Column("critical_value_process_date")]
|
|
|
|
//public DateTime? CriticalValueProcessDate { get; set; }
|
|
|
|
///// <summary>
|
|
|
|
///// 危急值创建日期
|
|
|
|
///// </summary>
|
|
|
|
//[Column("critical_value_create_date")]
|
|
|
|
//public DateTime? CriticalValueCreateDate { get; set; }
|
|
|
|
/// <summary>
|
|
|
|
/// 检查医生(内部传ID,外部医生存名字)
|
|
|
|
/// </summary>
|
|
|
|
|