diff --git a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml index 1cfadd39f..be55ef19c 100644 --- a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml +++ b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml @@ -10434,6 +10434,51 @@ 阅片期ID + + + 阅片范围 + + + + + 中心ID + + + + + 项目ID + + + + + 截止日期 + + + + + 截止访视 + + + + + 访视计划ID + + + + + 阅片期名称 + + + + + 类型 + + + + + 是否加入阅片计划 + + 阅片范围 @@ -10474,6 +10519,26 @@ 类型 + + + 中心Id + + + + + 受试者Code + + + + + 是否加入阅片计划 + + + + + 是否生成阅片计划 + + 获取影像阅片预览的Dto @@ -10524,6 +10589,16 @@ 阅片期名称 + + + 是否加入阅片计划 + + + + + 是否生成阅片计划 + + id @@ -13961,6 +14036,19 @@ + + + 判断是否修改了阅片期计划的参数 + + + + + + 设置加入或者移除阅片计划 + + + + 获取影像阅片的预览 // 需要清除之前已经选中的 (增加标准搜索,已修改) diff --git a/IRaCIS.Core.Infra.EFCore/Interceptor/AuditEntityInterceptor.cs b/IRaCIS.Core.Infra.EFCore/Interceptor/AuditEntityInterceptor.cs index 5be1469b6..c577ba2dd 100644 --- a/IRaCIS.Core.Infra.EFCore/Interceptor/AuditEntityInterceptor.cs +++ b/IRaCIS.Core.Infra.EFCore/Interceptor/AuditEntityInterceptor.cs @@ -88,7 +88,7 @@ public class AuditEntityInterceptor(IUserInfo _userInfo, //} // 检查属性是否为string类型,并且值为null - foreach (var property in entry.Properties.Where(t => t.Metadata.ClrType == typeof(string) && t.CurrentValue == null)) + foreach (var property in entry.Properties.Where(t => t.Metadata.ClrType == typeof(string) && !t.Metadata.IsNullable && t.CurrentValue == null)) { property.CurrentValue = string.Empty;