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.

21 lines
874 B
C#

using Estsh.Core.Model.Result;
using Estsh.Core.Models;
using Estsh.Core.Repositories;
using System.Collections;
namespace Estsh.Core.Repository.IRepositories
{
public interface IRoleRepository : IBaseRepository<SysRole>
{
public Hashtable getRoleListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
public List<SysWebMenu> getRoleMenuTree(String role_id);
public List<SysProgramFunOp> getRoleMenuOpTree(String role_id);
public List<SysRole> getRoleInfoById(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 role_id);
public int EnableData(String ids);
public int DisableData(String ids);
}
}