35 lines
992 B
C#
35 lines
992 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 IGoodsMaterial
|
|||
|
|
{
|
|||
|
|
DataTable GetGoodsMaterialList(string goodsId);
|
|||
|
|
/// <summary>
|
|||
|
|
/// 获取商品原材料对应关系
|
|||
|
|
/// </summary>
|
|||
|
|
/// <returns>商品原材料对应关系</returns>
|
|||
|
|
DataTable GetGoodsMaterialDT(GoodsMaterialModel model);
|
|||
|
|
DataTable GetGoodsMaterialNew();
|
|||
|
|
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 插入商品原材料对应关系信息
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="GoodsMaterialModel">商品原材料对应关系Model</param>
|
|||
|
|
void InsertGoodsMaterial(GoodsMaterialModel model);
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 删除一个商品原材料对应关系信息
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="ID">商品ID</param>
|
|||
|
|
void DeleteGoodsMaterial(string ID);
|
|||
|
|
}
|
|||
|
|
}
|