feat: 添加流程执行查询接口及模型类型与节点名称优化

This commit is contained in:
2026-05-12 14:31:51 +08:00
parent 7c26914353
commit 68576b2132
5 changed files with 25 additions and 3 deletions

View File

@@ -21,6 +21,10 @@ func (c *flowExecution) ModelCallback(ctx context.Context, req *flowDto.ModelCal
return
}
func (c *flowExecution) Get(ctx context.Context, req *flowDto.GetFlowExecutionReq) (res *flowDto.VOFlowExecution, err error) {
return flowService.FlowExecutionService.Get(ctx, req)
}
func (c *flowExecution) List(ctx context.Context, req *flowDto.ListFlowExecutionReq) (res *flowDto.ListFlowExecutionTreeRes, err error) {
return flowService.FlowExecutionService.List(ctx, req)
}