Uat_Study
parent
0e80b5c1f8
commit
691ab5cf77
|
@ -389,13 +389,13 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 文件数量
|
/// 文件数量
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public int FileCount
|
public int FileCount { get; set; }
|
||||||
{
|
//{
|
||||||
get
|
// get
|
||||||
{
|
// {
|
||||||
return this.FileList.Count();
|
// return this.FileList.Count();
|
||||||
}
|
// }
|
||||||
}
|
//}
|
||||||
|
|
||||||
public List<GetFileDto> FileList { get; set; } = new List<GetFileDto>();
|
public List<GetFileDto> FileList { get; set; } = new List<GetFileDto>();
|
||||||
|
|
||||||
|
|
|
@ -488,6 +488,7 @@ namespace IRaCIS.Application.Services
|
||||||
IsCRCUpload = x.ClinicalDataTrialSet.UploadRole == UploadRole.CRC,
|
IsCRCUpload = x.ClinicalDataTrialSet.UploadRole == UploadRole.CRC,
|
||||||
IsBlind=x.IsBlind,
|
IsBlind=x.IsBlind,
|
||||||
IsComplete=x.IsComplete,
|
IsComplete=x.IsComplete,
|
||||||
|
FileCount=x.FileCount,
|
||||||
|
|
||||||
ReadingClinicalDataState=x.ReadingClinicalDataState,
|
ReadingClinicalDataState=x.ReadingClinicalDataState,
|
||||||
|
|
||||||
|
|
|
@ -64,20 +64,24 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public Guid CreateUserId { get; set; }
|
public Guid CreateUserId { get; set; }
|
||||||
|
|
||||||
|
public int FileCount { get; set; }
|
||||||
|
|
||||||
|
[JsonIgnore]
|
||||||
|
|
||||||
//临床数据状态
|
//临床数据状态
|
||||||
public ReadingClinicalDataStatus ReadingClinicalDataState { get; set; }
|
public ReadingClinicalDataStatus ReadingClinicalDataState { get; set; }
|
||||||
|
|
||||||
|
[JsonIgnore]
|
||||||
[ForeignKey("ClinicalDataTrialSetId")]
|
[ForeignKey("ClinicalDataTrialSetId")]
|
||||||
|
|
||||||
public ClinicalDataTrialSet ClinicalDataTrialSet { get; set; }
|
public ClinicalDataTrialSet ClinicalDataTrialSet { get; set; }
|
||||||
|
|
||||||
|
[JsonIgnore]
|
||||||
[ForeignKey("ReadingId")]
|
[ForeignKey("ReadingId")]
|
||||||
|
|
||||||
public SubjectVisit SubjectVisit { get; set; }
|
public SubjectVisit SubjectVisit { get; set; }
|
||||||
|
|
||||||
|
[JsonIgnore]
|
||||||
[ForeignKey("ReadingId")]
|
[ForeignKey("ReadingId")]
|
||||||
|
|
||||||
public ReadModule ReadModule { get; set; }
|
public ReadModule ReadModule { get; set; }
|
||||||
|
@ -85,6 +89,7 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// PDF文件
|
/// PDF文件
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
[JsonIgnore]
|
||||||
public List<ReadingClinicalDataPDF> ReadingClinicalDataPDFList { get; set; }
|
public List<ReadingClinicalDataPDF> ReadingClinicalDataPDFList { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -821,6 +821,8 @@ namespace IRaCIS.Core.Infra.EFCore.Common
|
||||||
SubjectId = x.SubjectId,
|
SubjectId = x.SubjectId,
|
||||||
IsDistinctionInterface = false,
|
IsDistinctionInterface = false,
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
ObjectRelationParentId = entity.ReadingClinicalDataId
|
ObjectRelationParentId = entity.ReadingClinicalDataId
|
||||||
}, new
|
}, new
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue