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 ICounting { /// /// 增加盘点任务 /// /// void Add(CountingModel model); /// /// 修改盘点任务 /// /// void Update(CountingModel model); /// /// 更新Status /// /// /// void UpdateImport(string id, string status); /// /// 删除盘点任务 /// /// void Delete(string COUNT_ID); /// /// 删除盘点任务 /// /// void Delete(CountingModel model); /// /// 获取盘点任务集合 /// /// /// DataTable GetList(CountingModel model); /// /// 获取流水号 /// /// string GetSerialNum(); } }