38 lines
880 B
C#
38 lines
880 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 ITeam
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 增加班组信息
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="model"></param>
|
|||
|
|
void Add(TeamModel model);
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 更新班组信息
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="model"></param>
|
|||
|
|
void Update(TeamModel model);
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 删除班组信息
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="model"></param>
|
|||
|
|
void Delete(TeamModel model);
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 获取班组信息列表
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="model"></param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
DataTable GetList(TeamModel model);
|
|||
|
|
}
|
|||
|
|
}
|