using System; using System.Collections.Generic; using System.Linq; using System.Text; using WMS.Model.Stock; using System.Data; namespace WMS.IData.IStock { public interface ICountingInfo { /// /// 增加盘点任务 /// /// void Add(CountingInfoModel model); /// /// 修改盘点任务 /// /// void Update(CountingInfoModel model); /// /// 删除盘点任务 /// /// void Delete(string COUNT_ID, string GOODS_ID, string STO_SEAT); /// /// 删除盘点任务 /// /// void Delete(CountingInfoModel model); /// /// 获取盘点任务集合 /// /// /// DataTable GetList(CountingInfoModel model); } }