服务端的TigerApi 框架,基于.NET6 2024 版本
Ben Lin
2024-10-22 0ab0d17584b8e2ad194f36d05e9e5eff118d5f21
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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 IItemQuery : IWMSTransaction
    {
        public IItemQuery Init(string id, string userCode, string apiHost, string orgCode);
        /// <summary>
        /// 物料汇总查询
        /// </summary>
        /// <param name="input"></param>
        /// <returns></returns>
        public QueryItemView QueryItemSum(QueryItemInput input);
        /// <summary>
        /// 物料汇总明细查询
        /// </summary>
        /// <param name="input"></param>
        /// <returns></returns>
        public ApiAction<PageAble<V_WMS_ITEM>> GetQueryItemSumDtl(BasePageInput input);
 
        /// <summary>
        /// 领料单推荐所有物料亮灯
        /// </summary>
        /// <param name="light"></param>
        /// <returns></returns>
        public Task<ApiAction<ProdReqOutput>> LightAll(LightEntityInput light);
 
 
        /// <summary>
        /// 灭灯
        /// </summary>
        /// <returns></returns>
        public Task<ApiAction> CloseLight();
 
 
        public bool Close(bool needSaveHistoryLog = false);
    }
}