服务端的TigerApi 框架,基于.NET6 2024 版本
Ben Lin
20 小时以前 a960900364d19bbf0ad7923a57989609e7fce798
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
using Rhea.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tiger.Model;
 
namespace Tiger.IBusiness
{
    /// <summary>
    /// 备料任务下架事务
    /// </summary>
    public interface IOut_BIZ_WMS_PREP : IWmsTask
    {
        public IOut_BIZ_WMS_PREP Init(string id, string userCode, string apiHost, string orgCode);
 
        /// <summary>
        /// 扫描入口
        /// </summary>
        public Task<ApiAction<ScanOutput>> Scan(BaseInput input);
 
        /// <summary>
        ///  获取当前备料的备料任务信息
        /// </summary>
        /// <returns></returns>
        public Task<ApiAction<BIZ_WMS_PREP>> GetPrepInfo();
 
        /// <summary>
        ///  获取当前备料的物料行信息
        /// </summary>
        /// <returns></returns>
        public Task<ApiAction<BIZ_WMS_PREP_DTL>> GetCurPrepItem();
 
        /// <summary>
        /// 创建发料批次以完成本次发料,调用发料单据的ERP接口
        /// </summary>
        /// <param name="input"></param>
        /// <returns></returns>
        public Task<ApiAction> GenerateDlvyBatch(BaseInput input);
 
        public bool Close(bool needSaveHistoryLog = false);
    }
}