38 lines
956 B
C#
38 lines
956 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using WMS.Model.SystemManage;
|
|||
|
|
using System.Data;
|
|||
|
|
|
|||
|
|
namespace WMS.IData.ISystemManage
|
|||
|
|
{
|
|||
|
|
public interface IProviderRole
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 增加角色供应商权限
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="model"></param>
|
|||
|
|
void Add(ProviderRoleModel model);
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 更新角色供应商权限
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="model"></param>
|
|||
|
|
void Update(ProviderRoleModel model);
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 删除角色供应商权限
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="model"></param>
|
|||
|
|
void Delete(ProviderRoleModel model);
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 回去角色供应商权限列表
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="model"></param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
DataTable GetList(ProviderRoleModel model);
|
|||
|
|
}
|
|||
|
|
}
|