Files
tnb.server/system/Tnb.Systems.Interfaces/Permission/IOrganizeAdministratorService.cs
2023-03-13 15:00:34 +08:00

19 lines
513 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using JNPF.Common.Models.User;
namespace JNPF.Systems.Interfaces.Permission;
/// <summary>
/// 分级管理
/// 版 本V3.2.5
/// 版 权拓通智联科技有限公司http://www.tuotong-tech.com
/// 日 期2021.09.27.
/// </summary>
public interface IOrganizeAdministratorService
{
/// <summary>
/// 获取用户数据范围.
/// </summary>
/// <param name="userId"></param>
/// <returns></returns>
Task<List<UserDataScopeModel>> GetUserDataScopeModel(string userId);
}