服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
7 天以前 f7e91120bed67bf81f3e873056b147c8df2d68c0
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
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.Base;
 
namespace Tiger.IBusiness
{
    /// <summary>
    /// 备料任务单据
    /// </summary>
    public interface IPreparation
    {
        #region Propertys & Variables
        public BIZ_WMS_PREP Order { get; set; }
        #endregion Propertys & Variables
 
        #region Functions
        /// <summary>
        /// 备料任务添加单据
        /// </summary>
        /// <param name="bizType"></param>
        /// <param name="orderNo"></param>
        /// <returns></returns>
        public ApiAction<ScanOutput> AddOrder(BIZ_WMS_PREP.BIZ_TYPEs bizType, string orderNo);
        #endregion Functions
    }
}