64 lines
1.7 KiB
C#
64 lines
1.7 KiB
C#
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
|
|
{
|
|
|
|
/// <summary>
|
|
/// 获得数据
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <returns></returns>
|
|
DataTable GetRoleDictionaryListData(RoleDictionaryModel model);
|
|
|
|
/// <summary>
|
|
/// 判断是否存在记录
|
|
/// </summary>
|
|
/// <param name="role_id"></param>
|
|
/// <returns></returns>
|
|
string ExistsRoleDictionary(string role_id);
|
|
|
|
/// <summary>
|
|
/// 新增一条数据
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
void AddRoleDictionary(RoleDictionaryModel model);
|
|
|
|
/// <summary>
|
|
/// 新增多条数据
|
|
/// </summary>
|
|
/// <param name="list"></param>
|
|
void AddRoleDictionaryList(List<RoleDictionaryModel> list);
|
|
|
|
/// <summary>
|
|
/// 修改一条数据
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
void UpdateRoleDictionary(RoleDictionaryModel model);
|
|
|
|
/// <summary>
|
|
/// 修改多条数据
|
|
/// </summary>
|
|
/// <param name="list"></param>
|
|
void UpdateRoleDictionaryList(List<RoleDictionaryModel> list);
|
|
|
|
/// <summary>
|
|
/// 删除一条数据
|
|
/// </summary>
|
|
/// <param name="ROLE_ID"></param>
|
|
void DeleteRoleDictionary(string ROLE_ID);
|
|
|
|
/// <summary>
|
|
/// 删除多条数据
|
|
/// </summary>
|
|
/// <param name="list"></param>
|
|
void DeleteRoleDictionaryList(RoleDictionaryModel list);
|
|
}
|
|
}
|