You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
using Microsoft.AspNetCore.Http;
|
|
using Tiobon.Core.Common;
|
|
|
|
namespace Tiobon.Core.IServices;
|
|
|
|
/// <summary>
|
|
/// IPayServices
|
|
/// </summary>
|
|
public interface ICommonServices : IBaseServices<RootEntityTkey<int>>
|
|
{
|
|
|
|
/// <summary>
|
|
/// 获取菜单
|
|
/// </summary>
|
|
/// <param name="param"></param>
|
|
/// <returns></returns>
|
|
Task<ServiceResult<MenuReturn>> GetMenuAsync(MenuParam param);
|
|
|
|
|
|
Task<ServiceResult<ModuleReturn>> GetModuleInfoAsync(ModuleParam param);
|
|
|
|
Task<ServiceResult<ModuleESSReturn>> GetESSModuleInfoAsync(ModuleParam param);
|
|
|
|
Task<ServiceResult<CommonSelect>> GetSelectAsync(string type, string keyWords);
|
|
|
|
Task<ServiceResult<QueryExportReturn>> ExportExcelAsync(QueryExport param);
|
|
|
|
Task<ServiceResult<QueryExportReturn>> ImportExcelAsync(IFormFile file, string menuName, int langId, int userId);
|
|
|
|
Task<ServiceResult<FlowReturn>> GetFlowInfoAsync(FlowParam param);
|
|
|
|
Task<ServiceResult> CommitFlowAsync(FlowCommitParam param);
|
|
|
|
Task<Dictionary<String, Object>> getPostCommonAES(JObject param);
|
|
|
|
Task<Dictionary<string, object>> getPostCommon(JObject param);
|
|
|
|
Task AutoClearLog();
|
|
}
|
|
|