using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; using WMS.Model.Stock; namespace WMS.IData.IStock { public interface IAdjustList { DataTable GetIncertory(); void AddInvertory(string plcId, string loc, string sation); #region 获取库存调整单集合 /// /// 获取库存调整单集合 /// /// /// DataTable GetAdjustList(AdjustListModel model); #endregion #region 新增库存调整单 /// /// 新增库存调整单 /// /// /// void ExecListAdd(AdjustListModel model); #endregion #region 修改库存调整单 /// /// 修改库存调整单 /// /// void ExecListUpdate(AdjustListModel model); #endregion #region 删除库存调整单 /// /// 删除库存调整单 /// /// /// void DelList(AdjustListModel model); #endregion #region 审核库存调整单 void Check(AdjustListModel model); #endregion } }