using Rhea.Common;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using Tiger.Model;
|
|
namespace Tiger.IBusiness
|
{
|
public interface IShelfRemote : IWMSTransaction
|
{
|
public IShelfRemote Init(string id, string userCode, string apiHost);
|
public Task<ApiAction> CloseShelfAllLight(string shelfStr);
|
public bool Close(bool needSaveHistoryLog = false);
|
public Task<ApiAction> Test(string billCode);
|
}
|
}
|