IRC_NewDev
parent
e2f5a7fae1
commit
668e1019f0
|
@ -167,5 +167,38 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
/// 阅片配置的类型
|
/// 阅片配置的类型
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public ReadingSetType? ReadingSetType { get; set; }
|
public ReadingSetType? ReadingSetType { get; set; }
|
||||||
}
|
|
||||||
|
/// <summary>
|
||||||
|
/// 需要签名的临床数据数量
|
||||||
|
/// </summary>
|
||||||
|
public int NeedSignClinicalDataCount { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 已经签名的临床数据数量
|
||||||
|
/// </summary>
|
||||||
|
public int SignClinicalDataCount { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
public CompleteClinicalDataEnum CompleteClinicalData
|
||||||
|
{
|
||||||
|
|
||||||
|
get {
|
||||||
|
|
||||||
|
if (NeedSignClinicalDataCount == 0)
|
||||||
|
{
|
||||||
|
return CompleteClinicalDataEnum.NA;
|
||||||
|
|
||||||
|
}
|
||||||
|
else if (NeedSignClinicalDataCount == SignClinicalDataCount)
|
||||||
|
{
|
||||||
|
return CompleteClinicalDataEnum.Complete;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return CompleteClinicalDataEnum.NotComplete;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue