using Rhea.Common;
|
using SqlSugar;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Security.Policy;
|
using System.Text;
|
using System.Threading.Tasks;
|
using Tiger.Model;
|
using Tiger.Model.Sharetronic.Shelf;
|
|
namespace Tiger.IBusiness
|
{
|
public interface IRePrintLabel : IWMSTransaction
|
{
|
public IRePrintLabel Init(string id, string userCode, string apiHost, string orgCode);
|
public Task<ApiAction<ScanOutput>> Scan(BaseInput input);
|
|
|
public bool Close(bool needSaveHistoryLog = false);
|
}
|
}
|