服务端的TigerApi 框架,基于.NET6 2024 版本
Ben Lin
2025-01-15 a3b21ee43b13ad79302aceb9a68405b45e6467a4
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Tiger.Model.Entitys.WMS.DTOS
{
    //接收T100的销售出库单主表-20230720-NF-ADD
    public class SaleOutInfoDTO
    {
        /// <summary>
        /// 据点代码
        /// </summary>
        public string AUTH_ORG { get; set; }
 
        /// <summary>
        /// 企业代码-88是正式,108是测试库
        /// </summary>
        public string CorporateCode { get; set; }
 
        /// <summary>
        /// 单据代码
        /// </summary>
        public string BILLCODE { get; set; }
 
        /// <summary>
        /// 单据时间
        /// </summary>
        public DateTime BILLDATE { get; set; }
 
        /// <summary>
        /// 业务人员
        /// </summary>
        public string SALES_MAN { get; set; }
 
        /// <summary>
        /// 客户编号
        /// </summary>
        public string SUPPLIER_CODE { get; set; }
 
        /// <summary>
        /// 多角流程编号
        /// </summary>
        public string POLYGONAL_CODE { get; set; }
 
        /// <summary>
        /// 多角流程序号
        /// </summary>
        public string POLYGONAL_NO { get; set; }
 
        /// <summary>
        /// 目标据点
        /// </summary>
        public string TARGET_ORG { get; set; }
 
        /// <summary>
        /// 销售出库单明细数据
        /// </summary>
        public List<SalDetailDTO> Details { get; set; }
    }
 
    public class SalDetailDTO
    {
        /// <summary>
        /// 据点代码
        /// </summary>
        public string AUTH_ORG { get; set; }
 
        /// <summary>
        /// 单据代码
        /// </summary>
        public string BILLCODE { get; set; }
 
        /// <summary>
        /// 单据行号
        /// </summary>
        public int BILLLINE { get; set; }
 
        /// <summary>
        /// 创建时间
        /// </summary>
        public DateTime CREATE_TIME { get; set; }
 
        /// <summary>
        /// 物料代码
        /// </summary>
        public string ITEM_CODE { get; set; }
 
        /// <summary>
        /// 单位代码
        /// </summary>
        public string UNITCODE { get; set; }
 
        /// <summary>
        /// 需求数量
        /// </summary>
        public decimal? PRQTY { get; set; }
 
        /// <summary>
        /// 需求日期
        /// </summary>
        public DateTime DELIVERYDATE { get; set; }
 
        /// <summary>
        /// 出库仓库代码
        /// </summary>
        public string WAREHOUSECODE { get; set; }
    }
}