diff --git a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml
index fe970ad63..6a2f5d6ef 100644
--- a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml
+++ b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml
@@ -4179,6 +4179,11 @@
病灶类型
+
+
+ 病灶类型
+
+
OrganInfoAddOrEdit 列表查询参数模型
diff --git a/IRaCIS.Core.Domain/SQLFile/Sql脚本.sql b/IRaCIS.Core.Domain/SQLFile/Sql脚本.sql
index 19d0954d4..ae1843f46 100644
--- a/IRaCIS.Core.Domain/SQLFile/Sql脚本.sql
+++ b/IRaCIS.Core.Domain/SQLFile/Sql脚本.sql
@@ -26,3 +26,11 @@ update DataInspection set JsonDetail= replace(cast(JsonDetail as varchar(max)),'
update ReadingClinicalData set FileCount=(select count(*) from ReadingClinicalDataPDF where ReadingClinicalDataId =ReadingClinicalData.Id)
update NoneDicomStudy set FileCount=(select count(*) from NoneDicomStudyFile where NoneDicomStudyId =NoneDicomStudy.Id)
+
+
+update DataInspection set CreateUserName= (select UserName from [User] where [User].Id = DataInspection.CreateUserId)
+
+update DataInspection set RoleName=(select UserName from [User] INNER join UserType on [User].UserTypeId =UserType.Id where [User].Id=DataInspection.CreateUserId)
+
+update DataInspection set CreateUserRealName=(select LastName+' / '+FirstName from [User] where [User].Id=DataInspection.CreateUserId)
+
diff --git a/IRaCIS.Core.Infra.EFCore/Common/AuditingData.cs b/IRaCIS.Core.Infra.EFCore/Common/AuditingData.cs
index b9bdbe2f4..bb33333c4 100644
--- a/IRaCIS.Core.Infra.EFCore/Common/AuditingData.cs
+++ b/IRaCIS.Core.Infra.EFCore/Common/AuditingData.cs
@@ -816,6 +816,7 @@ namespace IRaCIS.Core.Infra.EFCore.Common
await InsertInspection(entity, type, x => new InspectionConvertDTO()
{
+ IsDistinctionInterface=false,
ObjectRelationParentId = entity.TrialId,
});
}