38 lines
847 B
C#
38 lines
847 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Data;
|
|||
|
|
using WMS.Model.Base;
|
|||
|
|
|
|||
|
|
namespace WMS.IData.IBase
|
|||
|
|
{
|
|||
|
|
public interface IBaseCtlGoods
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 查询容器数据
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="model">实体Model</param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
DataTable GetDataByID(BaseCtlGoodsModel model);
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 操作容器数据
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="model">实体Model</param>
|
|||
|
|
/// <param name="flag">0:新增 1:修改</param>
|
|||
|
|
void Operator(List<BaseCtlGoodsModel> model, int flag);
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 删除容器数据
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="Model">实体Model</param>
|
|||
|
|
void DeleteData(BaseCtlGoodsModel Model);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|