25 lines
585 B
C#
25 lines
585 B
C#
using JNPF.Systems.Entitys.System;
|
||
|
||
namespace JNPF.Apps.Interfaces;
|
||
|
||
/// <summary>
|
||
/// App常用数据
|
||
/// 版 本:V3.2
|
||
/// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com)
|
||
/// 日 期:2021-06-01 .
|
||
/// </summary>
|
||
public interface IAppDataService
|
||
{
|
||
/// <summary>
|
||
/// 菜单列表.
|
||
/// </summary>
|
||
/// <returns></returns>
|
||
Task<List<ModuleEntity>> GetAppMenuList(string keyword);
|
||
|
||
/// <summary>
|
||
/// 删除.
|
||
/// </summary>
|
||
/// <param name="objectId"></param>
|
||
/// <returns></returns>
|
||
Task Delete(string objectId);
|
||
} |