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<ApiAction> OtherInToT100(string billCode);
|
public Task<ApiAction> ScanItem(CustSupplyInInput input);
|
public Task<ApiAction<Model.Minsun.CustomerSupplyPuton>> ScanShelf(string Code);
|
public bool Close(bool needSaveHistoryLog = false);
|
}
|
}
|