Uat_Study
he 2023-07-10 14:52:40 +08:00
parent a7042ba8a6
commit 429b53feba
2 changed files with 16 additions and 1 deletions

View File

@ -3886,6 +3886,11 @@
路径
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.GetReadingOrTaskClinicalDataListInDto.IsOnlyGetCRCReadModule">
<summary>
只获取CRC上传的阅片模块结构化录入
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.GetReadingOrTaskClinicalDataListInDto.SelectIsSign">
<summary>
只查询已经签名的临床数据
@ -4031,6 +4036,16 @@
文件数量
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ClinicalFromData.ClinicalFormId">
<summary>
表单Id
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ClinicalFromData.CheckDate">
<summary>
检查日期
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.GetFileDto.Id">
<summary>
Id

View File

@ -19,7 +19,7 @@ namespace IRaCIS.Core.Infra.EFCore.EntityConfigration
.HasOne(s => s.ReadingClinicalData)
.WithMany(c => c.ClinicalFormList)
.HasForeignKey(s => new { s.SubjectId, s.ReadingId })
.HasPrincipalKey(c => new { c.Subject, c.ReadingId });
.HasPrincipalKey(c => new { c.SubjectId, c.ReadingId });
}