20230201_145_upperpc/InSituLaboratory.IService/IRoleService.cs

17 lines
363 B
C#
Raw Normal View History

2024-03-11 05:12:02 +00:00
using InSituLaboratory.Entities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace InSituLaboratory.IService
{
public interface IRoleService : IBaseService
{
IEnumerable<SysRole> GetRoles(string key);
bool CheckRoleName(string roleName, int roleId);
}
}