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

24 lines
610 B

using Microsoft.AspNetCore.Mvc;
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([FromBody] MenuParam param);
Task<ServiceResult<ModuleReturn>> GetModuleInfoAsync([FromBody] ModuleParam param);
Task<ServiceResult<CommonSelect>> GetSelectAsync(string type);
}