修改一版
This commit is contained in:
@@ -65,15 +65,27 @@ namespace IRaCIS.Core.Domain.Models
|
||||
/// </summary>
|
||||
public Guid? LastVisitIdSetId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 对应阅片期
|
||||
/// </summary>
|
||||
public Guid? ReadModuleId { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 对应
|
||||
/// </summary>
|
||||
[ForeignKey("ReadModuleId")]
|
||||
public ReadModule ReadModuleModel { get; set; } = new ReadModule();
|
||||
|
||||
/// <summary>
|
||||
/// 阅片期配置
|
||||
/// </summary>
|
||||
[ForeignKey("ReadingPeriodSetId")]
|
||||
[ForeignKey("ReadingPeriodSetId")]
|
||||
public ReadingPeriodSet ReadingPeriodSet { get; set; } = new ReadingPeriodSet();
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 阅片期配置
|
||||
/// 访视
|
||||
/// </summary>
|
||||
[ForeignKey("SubjectVisitId")]
|
||||
public SubjectVisit SubjectVisit { get; set; } = new SubjectVisit();
|
||||
@@ -81,7 +93,7 @@ namespace IRaCIS.Core.Domain.Models
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 阅片期配置
|
||||
/// 访视
|
||||
/// </summary>
|
||||
[ForeignKey("LastVisitIdSetId")]
|
||||
public SubjectVisit LastSubjectVisit { get; set; } = new SubjectVisit();
|
||||
|
||||
Reference in New Issue
Block a user