服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2024-12-06 9719a7f0ccbb70e4e51a93cbe1733d1424c16f6d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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.Minsun;
 
namespace Tiger.IBusiness
{
    public interface IResell : IWMSTransaction
    {
        public IResell Init(string id, string userCode, string apiHost, string orgCode);
        public ApiAction<PageAble<BIZ_ERP_SALE_OUT>> GetResellHeaders(int pageIndex, int pageSize, string orgcode, string billcode);
        public ApiAction MaterialToErp(Resell_Input param);
        public Task<ApiAction<ResellPuton>> ScanShelf(string Code);
        public Task<ApiAction> ScanItem(ResellModel input);
        public Task<ApiAction<Resell_Input>> SelectOrder(ResellInput Code);
        public bool Close(bool needSaveHistoryLog = false);
    }
}