软测单独项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
599 B

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);
}
}