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 IRoleDepart
{
#region 查询
///
/// 查询
///
///
///
DataTable GetList(RoleDepartModel model);
#endregion
#region 新增
///
/// 新增
///
///
void AddRoleDepart(List list);
#endregion
#region 新增
///
/// 新增一条记录
///
///
void AddRoleDepart(RoleDepartModel model);
#endregion
#region 修改
///
/// 修改
///
///
void UpdateRoleDepart(List list);
#endregion
#region 删除
///
/// 删除
///
///
void DeleteRoleDepart(RoleDepartModel model);
#endregion
}
}