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 IPlanGoods { /// /// 增加一条信息 /// /// void AddPlanGoods(PlanGoodsModel model); /// /// 修改一条信息 /// /// void Update(PlanGoodsModel model); /// /// 删除一条信息 /// /// void Delete(PlanGoodsModel model); /// /// 获取集合 /// /// /// DataTable GetPlanGoodsList(PlanGoodsModel model); } }