using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WMS.Model.Base; namespace WMS.IData.IBase { interface IAreaGoodsData { /// /// 新增物料库区 /// /// void InsertAreaGoods(AreaGoodsModel areaGoods); /// /// 删除库区物料信息 /// /// void DelAreaGoods(AreaGoodsModel areaGoods); System.Data.DataTable GetAreaGoods(AreaGoodsModel areaGoods); } }