24 lines
641 B
C#
24 lines
641 B
C#
using JNPF.Systems.Entitys.System;
|
||
|
||
namespace JNPF.Systems.Interfaces.System;
|
||
|
||
/// <summary>
|
||
/// 数据权限方案
|
||
/// 版 本:V3.2
|
||
/// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com)
|
||
/// 日 期:2021-06-01.
|
||
/// </summary>
|
||
public interface IModuleDataAuthorizeSchemeService
|
||
{
|
||
/// <summary>
|
||
/// 列表.
|
||
/// </summary>
|
||
/// <param name="moduleId">功能id.</param>
|
||
/// <returns></returns>
|
||
Task<List<ModuleDataAuthorizeSchemeEntity>> GetList(string? moduleId = default);
|
||
|
||
/// <summary>
|
||
/// 获取用户数据权限方案.
|
||
/// </summary>
|
||
Task<dynamic> GetResourceList();
|
||
} |