namespace WIDESEA_IStorageOutOrderServices; public interface IDt_OutOrderAndStockService : IService { /// /// 根据特定条件获取出库物料信息 /// /// 货位ID /// 出库订单 /// 托盘号 /// 出库物料信息 Task GetOrderAndStock(string locationID = null, string orderNum = null, string palletCode = null); /// /// 导航删除 /// /// 出库物料信息 /// 成功/失败 bool DeleteNavOrderStock(Dt_OutOrderAndStock stock); /// /// 导航更新 /// /// 出库物料信息 /// 成功/失败 bool UpdateNavOrderStock(Dt_OutOrderAndStock stock); }