设备数采项目刷选 工艺标准模板导出

This commit is contained in:
2023-06-05 17:23:19 +08:00
parent 7ec192f711
commit 0d7e49695c
12 changed files with 471 additions and 1 deletions

View File

@@ -1,3 +1,4 @@
using Microsoft.AspNetCore.Mvc;
using Tnb.PerMgr.Entities.Dto;
namespace Tnb.PerMgr.Interfaces
@@ -10,5 +11,6 @@ namespace Tnb.PerMgr.Interfaces
/// <param name="dic"></param>
/// <returns></returns>
public Task<ProcessParamOutput> GetProcessParamInfo(Dictionary<string,string> dic);
}
}

View File

@@ -0,0 +1,13 @@
using Microsoft.AspNetCore.Mvc;
namespace Tnb.PerMgr.Interfaces
{
public interface IPerProcessStandardsService
{
/// <summary>
/// 导出模板
/// </summary>
/// <returns></returns>
public Task<IActionResult> ExportTemplate();
}
}