This commit is contained in:
he
2022-07-04 13:41:49 +08:00
parent 9b2d431fa8
commit 7a906ae983
6 changed files with 177 additions and 41 deletions
@@ -88,6 +88,37 @@ namespace IRaCIS.Core.Domain.Models
public TaskMedicalReviewRule TaskMedicalReviewRule { get; set; }
/// <summary>
/// 是否有问题
/// </summary>
public bool IsHaveQuestion { get; set; } = false;
/// <summary>
/// 质询问题
/// </summary>
public string Questioning { get; set; } = string.Empty;
/// <summary>
/// 图片路径
/// </summary>
public string ImagePath { get; set; } = string.Empty;
/// <summary>
/// 审核建议
/// </summary>
public AuditAdvice AuditAdviceEnum { get; set; }
/// <summary>
/// 是否完成
/// </summary>
public bool IsFinish { get; set; }
/// <summary>
/// 是否关闭
/// </summary>
public bool IsClosed { get; set; }
}