|
@@ -181,7 +181,8 @@ public class WorkflowController : BaseController
|
|
|
/// </summary>
|
|
|
/// <param name="dto"></param>
|
|
|
/// <returns></returns>
|
|
|
- [HttpGet("definition/export")]
|
|
|
+ [HttpPost("definition/export")]
|
|
|
+ [LogFilterAlpha("导出日志")]
|
|
|
public async Task<FileStreamResult> QueryDefinitionsExport([FromBody] ExportExcelDto<QueryDefinitionDto> dto)
|
|
|
{
|
|
|
var query = _definitionRepository.Queryable()
|
|
@@ -328,7 +329,8 @@ public class WorkflowController : BaseController
|
|
|
/// 查询所有工作流模块导出
|
|
|
/// </summary>
|
|
|
/// <returns></returns>
|
|
|
- [HttpGet("wfmodules/export")]
|
|
|
+ [HttpPost("wfmodules/export")]
|
|
|
+ [LogFilterAlpha("导出日志")]
|
|
|
public async Task<FileStreamResult> QueryWfModulesExport([FromBody] ExportExcelDto<QueryCommonDto> dto)
|
|
|
{
|
|
|
var items = await _wfModuleRepository.Queryable().Includes(d => d.Definition).ToListAsync(HttpContext.RequestAborted);
|