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 ICustomerSupplyInNew : IWMSTransaction { public ICustomerSupplyInNew Init(string id, string userCode, string apiHost, string orgCode); public Task OtherInToT100(string billCode); public Task ScanItem(CustSupplyInInput input); public Task> ScanShelf(string Code); public bool Close(bool needSaveHistoryLog = false); } }