mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2026-03-30 21:23:25 +08:00
feat: #IBYEGX 业务系统增加送审功能
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Infrastructure;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
@@ -83,6 +84,17 @@ namespace OpenAuth.WebApi.Controllers
|
||||
return await _app.Load(request);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 加载URL表单的流程模板
|
||||
/// </summary>
|
||||
[HttpGet]
|
||||
public Response<List<FlowScheme>> LoadUrlFormFlowScheme()
|
||||
{
|
||||
var result = new Response<List<FlowScheme>>();
|
||||
result.Result = _app.LoadUrlFormFlowScheme();
|
||||
return result;
|
||||
}
|
||||
|
||||
[HttpPost]
|
||||
public Response Delete([FromBody]string[] ids)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user