using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace FangYar.IDAL.TBL
{
public interface SysPermIDAL
{
///
/// 根据ID获取model
///
FangYar.Model.TBL.TBL_SYS_PERM_Model GetModelByID(string ID);
///
/// 根据AppId获取model
///
FangYar.Model.TBL.TBL_SYS_PERM_Model GetModelByAppId(string AppId);
///
/// 添加菜单
///
bool Add(FangYar.Model.TBL.TBL_SYS_PERM_Model model);
///
/// 删除
///
bool Delete(string IDList);
///
/// 编辑
///
bool Edit(FangYar.Model.TBL.TBL_SYS_PERM_Model model);
///
/// 获取记录总数
///
///
///
int Count(string where);
///
/// 分页
///
///
///
///
///
void QueryProc(int PageIndex, int PageSize, string strwhere, string order);
List QueryList(int PageIndex, int PageSize, string strwhere, string order);
}
}