38 lines
901 B
C#
38 lines
901 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using WMS.Model.Base;
|
|||
|
|
using WMS.IData;
|
|||
|
|
using System.Data;
|
|||
|
|
|
|||
|
|
namespace WMS.IData.IBase
|
|||
|
|
{
|
|||
|
|
public interface IGoodProvider
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 查询供应商物料
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="proivider"></param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
DataTable GetGoodsData(string proivider);
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 增加商品的供应商
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="ProviderModel"></param>
|
|||
|
|
void AddProviderGoods(GoodsProviderModel ProviderModel);
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 删除商品的供应商
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="goodsId"></param>
|
|||
|
|
/// <param name="providerId"></param>
|
|||
|
|
void DelProviderGoods(string goodsId, string providerId);
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|