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