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.
 
 
 
Tiobon.Web.Core/Tiobon.Core.IServices/ICommonServices.cs

42 lines
1.3 KiB

using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Newtonsoft.Json.Linq;
using System.Data;
using Tiobon.Core.Common;
using Tiobon.Core.IServices.BASE;
using Tiobon.Core.Model;
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>> DownImportTemplateAsync(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);
}