12 lines
281 B
C#
12 lines
281 B
C#
using RIZO.Model.System;
|
|
using RIZO.Model.System.Dto;
|
|
|
|
namespace RIZO.ServiceCore.Services
|
|
{
|
|
public interface ISysPermissionService
|
|
{
|
|
public List<string> GetRolePermission(SysUserDto user);
|
|
public List<string> GetMenuPermission(SysUserDto user);
|
|
}
|
|
}
|