36 lines
908 B
C#
36 lines
908 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using WMS.Model.RK;
|
|
using System.Data;
|
|
using WMS.Model.SC;
|
|
|
|
namespace WMS.IData.ISC
|
|
{
|
|
public interface IPlanGoods
|
|
{
|
|
/// <summary>
|
|
/// 增加一条信息
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
void AddPlanGoods(PlanGoodsModel model);
|
|
/// <summary>
|
|
/// 修改一条信息
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
void Update(PlanGoodsModel model);
|
|
/// <summary>
|
|
/// 删除一条信息
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
void Delete(PlanGoodsModel model);
|
|
/// <summary>
|
|
/// 获取集合
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <returns></returns>
|
|
DataTable GetPlanGoodsList(PlanGoodsModel model);
|
|
}
|
|
}
|