using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; namespace FangYar.IDAL.TBL { public interface SysRoleMenuIDAL { //记录总数 int Count(string where); //记录总数 int CountNot(string where); bool Delete(string IDList); bool DeleteNot(string IDList); //添加 bool Add(FangYar.Model.TBL.TBL_SysRoleMenuModel model); DataTable queryDataTable(string appid, string roleId); DataTable queryDataTableNot(string appid, string roleId); } }