merge from 2023-03-14
This commit is contained in:
@@ -220,7 +220,8 @@ public class FlowTaskRepository : IFlowTaskRepository, ITransient
|
||||
flowUrgent = a.FlowUrgent,
|
||||
startTime = a.CreatorTime,
|
||||
completion = a.Completion,
|
||||
nodeName = b.NodeName
|
||||
nodeName = b.NodeName,
|
||||
templateId = a.TemplateId,
|
||||
});
|
||||
|
||||
// 委托审核
|
||||
@@ -251,7 +252,8 @@ public class FlowTaskRepository : IFlowTaskRepository, ITransient
|
||||
flowUrgent = a.FlowUrgent,
|
||||
startTime = a.CreatorTime,
|
||||
completion = a.Completion,
|
||||
nodeName = b.NodeName
|
||||
nodeName = b.NodeName,
|
||||
templateId = a.TemplateId,
|
||||
});
|
||||
var output = await _repository.AsSugarClient().UnionAll(list1, list2).Where(whereLambda).MergeTable().OrderBy(x => x.creatorTime, OrderByType.Desc).ToPagedListAsync(input.currentPage, input.pageSize);
|
||||
return PageResult<FlowBeforeListOutput>.SqlSugarPageResult(output);
|
||||
|
||||
Reference in New Issue
Block a user