You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
799 B
C#

using Dapper;
using Estsh.Core.Model.Result;
using Estsh.Core.Models;
using Estsh.Core.Util;
using System.Collections;
namespace Estsh.Core.Services.IServices
{
public interface IRoleService : IBaseService<SysRole>
{
public Hashtable getRoleListByPage(String role_name, Pager pager, String direction, String sort, String enabled);
public ArrayList getRoleMenuTree(String role_id);
public List<SysRole> getRoleDetail(String role_id);
public int saveRoleInfo(SysRole htParams, string menuTreeInfo, string opMenuTreeInfo);
public int updateRoleInfo(SysRole htParams, string menuTreeInfo, string opMenuTreeInfo);
public int deleteRole(String ids);
public int EnableData(String ids);
public int DisableData(String ids);
}
}