添加批量插入稽查方法

This commit is contained in:
he
2022-04-07 12:01:57 +08:00
parent 2fc57f7041
commit 7a1cc3e29f
3 changed files with 39 additions and 4 deletions
@@ -36,7 +36,7 @@ namespace IRaCIS.Core.Application.Service
{
var list =await (from data in _repository.GetQueryable<FrontAuditConfig>().Where(x => x.Identification == item.Identification)
join childrenType in _repository.GetQueryable<FrontAuditConfig>() on data.Id equals childrenType.ParentId
select childrenType).ToListAsync();
select childrenType).OrderBy(x=>x.Sort).ToListAsync();
return list;
}