服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
6 天以前 756e6c531d49a4565e47949120cb33bae431566e
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Tiger.Model.Base
{
    /// <summary>
    /// 业务单据基类接口
    /// </summary>
    public interface iBizOrder
    {
        string ORDER_NO { get; set; }
    }
 
    /// <summary>
    /// 备料业务捡料明细基类接口
    /// </summary>
    public interface iPrepPickItem
    {
        /// <summary>
        /// 获取备料捡料明细
        /// </summary>
        BIZ_WMS_PREP_SRC_DTL GetPickItem();
    }
}