自身一致性分析
This commit is contained in:
@@ -13,6 +13,7 @@ namespace IRaCIS.Core.Application.ViewModel
|
||||
/// <summary> TaskMedicalReviewView 列表视图模型 </summary>
|
||||
public class TaskMedicalReviewView : VisitTaskViewBasic
|
||||
{
|
||||
public string MedicalNo { get; set; } = string.Empty;
|
||||
|
||||
public int AuditState { get; set; }
|
||||
public DateTime? AuditSignTime { get; set; }
|
||||
@@ -39,6 +40,8 @@ namespace IRaCIS.Core.Application.ViewModel
|
||||
//开始读片时间
|
||||
public DateTime? FirstReadingTime { get; set; }
|
||||
|
||||
public string MedicalNo { get; set; } = string.Empty;
|
||||
|
||||
//读片时间差
|
||||
public TimeSpan? ReadingDurationTimeSpan { get; set; }
|
||||
|
||||
@@ -47,15 +50,15 @@ namespace IRaCIS.Core.Application.ViewModel
|
||||
{
|
||||
get
|
||||
{
|
||||
if (!ReadingDurationTimeSpan.HasValue )
|
||||
if (!ReadingDurationTimeSpan.HasValue)
|
||||
return "";
|
||||
else return /*string.Format("{0}天{1}小时{2}分钟", (SignTime - FirstReadingTime)?.Days, (SignTime - FirstReadingTime)?.Hours, (SignTime - FirstReadingTime)?.Minutes)*/
|
||||
string.Format("{0}分钟", (ReadingDurationTimeSpan)?.TotalMinutes);
|
||||
string.Format("{0}分钟", (ReadingDurationTimeSpan)?.TotalMinutes);
|
||||
}
|
||||
}
|
||||
|
||||
//是否产生裁判
|
||||
public bool IsGeneratedJudge { get; set; }
|
||||
public bool IsGeneratedJudge { get; set; }
|
||||
|
||||
//审核次数
|
||||
public int? GeneratedMedicalReviewCount { get; set; }
|
||||
@@ -87,6 +90,15 @@ namespace IRaCIS.Core.Application.ViewModel
|
||||
|
||||
}
|
||||
|
||||
//public class GenerateMedicalReviewTaskQuery : TaskMedicalReviewQuery
|
||||
//{
|
||||
// public bool? IsGeneratedJudge { get; set; }
|
||||
|
||||
// public bool? IsGlobalHaveUpdate { get; set; }
|
||||
//}
|
||||
|
||||
|
||||
|
||||
public class GenerateMedicalReviewTaskCommand
|
||||
{
|
||||
public Guid TrialId { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user