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 { /// /// 商品UNIT管理 /// public interface IGoodsMeasure { /// /// 增加商品UNIT /// /// void AddGoodsMeasure(GoodsMeasureModel Measure); /// /// 增加商品UNIT /// /// void UpGoodsMeaSure(GoodsMeasureModel Measure); /// /// 删除所有商品的UNIT /// /// void DelGoodsMeaSure(string strGoodsID); /// /// 删除商品的某个UNIT /// /// /// void DelGoodsOneMeaSure(string strGoodsID, string unitId); /// /// 对修改的商品进行备份 /// /// void AddGoodsMeaSureBak(string strGoodsId); /// /// 查询物料是否已经在BOM为父类 /// /// /// DataTable GetCtGoodsMeaSure(string goodsID); } }