服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2024-09-24 e3034dbd4d96e244af376ba36842edf1f732a76c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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);
    }
}