using Rhea.Common;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using Tiger.Model;
|
using Tiger.Model.Sharetronic.Shelf;
|
|
namespace Tiger.IBusiness
|
{
|
public interface IBiz_Shelf
|
{
|
public Task<ShelfApiResult> GetChuteInfo(List<WMS_LOCATION> list);
|
public Task<ShelfApiResult> GetChuteInfo(WMS_SHELF shelf);
|
public Task<ShelfApiResult> GetChuteInfo(WMS_LOCATION location);
|
public Task<ShelfApiResult> LightAll(WMS_SHELF shelf, LedColor color);
|
public Task<ShelfApiResult> LightAll(WMS_LOCATION location, LedColor color);
|
public Task<ShelfApiResult> DownAll(WMS_SHELF shelf);
|
public Task<ShelfApiResult> DownAll(WMS_LOCATION location);
|
public Task<ShelfApiResult> LightMulti(string pdaId, LedColor color, List<WMS_LOCATION> list);
|
public Task<ShelfApiResult> LightMulti(string pdaId, LedColor color, WMS_SHELF shelf);
|
public Task<ShelfApiResult> LightMulti(string pdaId, LedColor color, WMS_LOCATION location);
|
public Task<ShelfApiResult> DownMulti(string pdaId, List<WMS_LOCATION> list);
|
public Task<ShelfApiResult> DownMulti(string pdaId, WMS_SHELF shelf);
|
public Task<ShelfApiResult> DownMulti(string pdaId, WMS_LOCATION location);
|
public Task<ShelfApiResult> LightSingle(string pdaId, LedColor color, WMS_LOCATION location);
|
public Task<ShelfApiResult> DownSingle(string pdaId, WMS_LOCATION location);
|
public Task<ShelfApiResult> OperateTowerLight(TowerColor color, WMS_SHELF shelf);
|
public Task<ShelfApiResult> OperateTowerLight(TowerColor color, WMS_LOCATION location);
|
public Task<ShelfApiResult> PutOn(string pdaId, WMS_SHELF shelf, WMS_ITEM curItem);
|
}
|
}
|