You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.2 KiB
48 lines
1.2 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.RegisterCheckItems
|
|
{
|
|
public class UpdateRegisterCheckItemCriticalInputDto
|
|
{
|
|
public Guid RegisterCheckId { get; set; }
|
|
|
|
public Guid ItemId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 危急值标志 Y N 无需修改时传null
|
|
/// </summary>
|
|
public char? IsCriticalValue { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 随访值标志 Y N 无需修改时传null
|
|
/// </summary>
|
|
public char? IsFollowUp { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 危急值医生填写的内容
|
|
/// </summary>
|
|
public string CriticalValueContent { get; set; }
|
|
|
|
/// <summary>
|
|
/// 危急值是否审核 Y N 无需修改时传null
|
|
/// </summary>
|
|
public char? IsCriticalValueAudit { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 该项目要复查 Y N 无需修改时传null
|
|
/// </summary>
|
|
public char? IsReview { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 诊断级别ID
|
|
/// </summary>
|
|
public short? DiagnosisLevelId { get; set; }
|
|
}
|
|
}
|