Test.EIImageViewer
parent
f59f8e214c
commit
0134c96f28
|
@ -2253,6 +2253,11 @@
|
||||||
类型
|
类型
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingReportDto.QuestionMark">
|
||||||
|
<summary>
|
||||||
|
问题标识
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingReportDto.TypeValue">
|
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingReportDto.TypeValue">
|
||||||
<summary>
|
<summary>
|
||||||
类型值
|
类型值
|
||||||
|
|
|
@ -138,7 +138,6 @@ namespace IRaCIS.Core.Application.ViewModel
|
||||||
public string UserTypeShortName { get; set; }
|
public string UserTypeShortName { get; set; }
|
||||||
|
|
||||||
|
|
||||||
public bool IsClinicalDataSigned { get; set; } = false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public class UserSimpleInfo
|
public class UserSimpleInfo
|
||||||
|
|
|
@ -125,7 +125,7 @@ namespace IRaCIS.Core.Application.Service
|
||||||
.ForMember(o => o.UserName, t => t.MapFrom(u => u.DoctorUser.UserName))
|
.ForMember(o => o.UserName, t => t.MapFrom(u => u.DoctorUser.UserName))
|
||||||
.ForMember(o => o.FullName, t => t.MapFrom(u => u.DoctorUser.FullName))
|
.ForMember(o => o.FullName, t => t.MapFrom(u => u.DoctorUser.FullName))
|
||||||
.ForMember(o => o.UserTypeShortName, t => t.MapFrom(u => u.DoctorUser.UserTypeRole.UserTypeShortName))
|
.ForMember(o => o.UserTypeShortName, t => t.MapFrom(u => u.DoctorUser.UserTypeRole.UserTypeShortName))
|
||||||
.ForMember(o => o.IsClinicalDataSigned, t => t.MapFrom(u => u.Subject.ClinicalDataList.Any(c => c.IsSign && (c.ReadingId == u.SouceReadModuleId || c.ReadingId == u.SourceSubjectVisitId))))
|
//.ForMember(o => o.IsClinicalDataSigned, t => t.MapFrom(u => u.Subject.ClinicalDataList.Any(c => c.IsSign && (c.ReadingId == u.SouceReadModuleId || c.ReadingId == u.SourceSubjectVisitId))))
|
||||||
;
|
;
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -171,7 +171,7 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
public bool? IsGlobalHaveUpdate { get; set; }
|
public bool? IsGlobalHaveUpdate { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 是否阅读临床数据
|
/// IR是否阅读临床数据
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool IsReadClinicalData { get; set; } = false;
|
public bool IsReadClinicalData { get; set; } = false;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue