38 lines
923 B
C#
38 lines
923 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using WMS.Model.Base;
|
|||
|
|
using System.Data;
|
|||
|
|
|
|||
|
|
namespace WMS.IData.IBase
|
|||
|
|
{
|
|||
|
|
public interface IRoleStorage
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 增加角色仓库权限
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="model"></param>
|
|||
|
|
void Add(RoleStorageModel model);
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 修改角色仓库权限
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="model"></param>
|
|||
|
|
void Update(RoleStorageModel model);
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 删除角色仓库权限
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="model"></param>
|
|||
|
|
void Delete(RoleStorageModel model);
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 获取角色仓库权限集合
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="model"></param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
DataTable GetList(RoleStorageModel model);
|
|||
|
|
}
|
|||
|
|
}
|