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); /// /// 获取商品原材料对应关系 /// /// 商品原材料对应关系 DataTable GetGoodsMaterialDT(GoodsMaterialModel model); DataTable GetGoodsMaterialNew(); /// /// 插入商品原材料对应关系信息 /// /// 商品原材料对应关系Model void InsertGoodsMaterial(GoodsMaterialModel model); /// /// 删除一个商品原材料对应关系信息 /// /// 商品ID void DeleteGoodsMaterial(string ID); } }