using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using WMS.Model.SystemManage;
namespace WMS.IData.ISystemManage
{
public interface IRoleDictionary
{
///
/// 获得数据
///
///
///
DataTable GetRoleDictionaryListData(RoleDictionaryModel model);
///
/// 判断是否存在记录
///
///
///
string ExistsRoleDictionary(string role_id);
///
/// 新增一条数据
///
///
void AddRoleDictionary(RoleDictionaryModel model);
///
/// 新增多条数据
///
///
void AddRoleDictionaryList(List list);
///
/// 修改一条数据
///
///
void UpdateRoleDictionary(RoleDictionaryModel model);
///
/// 修改多条数据
///
///
void UpdateRoleDictionaryList(List list);
///
/// 删除一条数据
///
///
void DeleteRoleDictionary(string ROLE_ID);
///
/// 删除多条数据
///
///
void DeleteRoleDictionaryList(RoleDictionaryModel list);
}
}