稽查先记录
continuous-integration/drone/push Build is passing Details

Test_IRC_Net8
Hewt 2026-03-23 10:57:37 +08:00
parent 38d1c2f92a
commit 3d8fc0776c
1 changed files with 44 additions and 0 deletions

View File

@ -3616,6 +3616,50 @@ namespace IRaCIS.Core.Infra.EFCore.Common
} }
//Segmentation
foreach (var item in entitys.Where(x => x.Entity.GetType() == typeof(Segmentation)))
{
var type = GetEntityAuditOpt(item);
var entity = item.Entity as Segmentation;
await InsertInspection<Segmentation>(entity, type, x => new InspectionConvertDTO()
{
});
}
//Segment
foreach (var item in entitys.Where(x => x.Entity.GetType() == typeof(Segment)))
{
var type = GetEntityAuditOpt(item);
var entity = item.Entity as Segment;
await InsertInspection<Segment>(entity, type, x => new InspectionConvertDTO()
{
});
}
//SegmentBinding
foreach (var item in entitys.Where(x => x.Entity.GetType() == typeof(SegmentBinding)))
{
var type = GetEntityAuditOpt(item);
var entity = item.Entity as SegmentBinding;
await InsertInspection<SegmentBinding>(entity, type, x => new InspectionConvertDTO()
{
});
}
foreach (var item in entitys.Where(x => x.Entity.GetType() == typeof(ReadingNoneDicomMark))) foreach (var item in entitys.Where(x => x.Entity.GetType() == typeof(ReadingNoneDicomMark)))
{ {
var type = GetEntityAuditOpt(item); var type = GetEntityAuditOpt(item);