using System.Collections.Generic;
using WX.CRM.Common;
using WX.CRM.Model.Entity;
using WX.CRM.Model.MAP;
namespace WX.CRM.IBLL.Base
{
public interface IBAS_RIGHT_LEVEL
{
///
/// 添加
///
///
///
bool Create(ref ValidationErrors errors, BAS_RIGHT_LEVEL model, List detailList);
///
/// 数据的修改
///
///
///
bool Update(ref ValidationErrors errors, BAS_RIGHT_LEVEL model, List detailList);
///
/// 删除
///
///
///
bool Delete(ref ValidationErrors errors, decimal id);
///
/// 获取实体
///
///
///
BAS_RIGHT_LEVEL GetModel(decimal id);
///
/// 获取实体
///
///
///
List GetDetailModel(decimal id);
///
/// 按照条件查找信息
///
///
///
///
///
///
///
///
List GetList(string rightcode, string rolecode);
}
}