38 lines
929 B
C#
38 lines
929 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 IGoodsRole
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 增加角色商品权限
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="model"></param>
|
|||
|
|
void Add(GoodsRoleModel model);
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 更新角色商品权限
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="model"></param>
|
|||
|
|
void Update(GoodsRoleModel model);
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 删除角色商品权限
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="model"></param>
|
|||
|
|
void Delete(GoodsRoleModel model);
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 回去角色商品权限列表
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="model"></param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
DataTable GetList(GoodsRoleModel model);
|
|||
|
|
}
|
|||
|
|
}
|