服务端的TigerApi 框架,基于.NET6 2024 版本
Ben Lin
2024-10-27 6f3b05c06125b457d0c78e259f3befe4910881cf
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
using System;
using System.ComponentModel;
using SqlSugar;
 
namespace Tiger.Model
{
    /// <summary>
    /// 实体 供应商送货单条码明细
    /// </summary>
    [Description("Primary:ID")]
    [Serializable]
    [SugarTable("WMS_SUPP_DLVY_SN")]
    [Obsolete]
    public class WMS_SUPP_DLVY_SN : DbEntityNoGhostWithAuth
    {
        #region 构造函数
        /// <summary>
        /// 实体 供应商送货单条码明细
        /// </summary>
        public WMS_SUPP_DLVY_SN() { }
        #endregion
 
        #region 公共属性
        /// <summary>
        /// 送货单号
        /// </summary>
        public string DELIVERY_NO { get; set; }
        /// <summary>
        /// 物料编码
        /// </summary>
        public string ITEM_CODE { get; set; }
        /// <summary>
        /// 物料名称
        /// </summary>
        public string ITEM_NAME { get; set; }
        /// <summary>
        /// 规格
        /// </summary>
        public string SPECIFICATION { get; set; }
        /// <summary>
        /// 数量
        /// </summary>
        public decimal QTY { get; set; } = 0;
        /// <summary>
        /// 小包条码(携客云)
        /// </summary>
        public string SMALL_BARCODE { get; set; }
        /// <summary>
        /// 大包条码(携客云)
        /// </summary>
        public string BIG_BARCODE { get; set; }
        /// <summary>
        /// 外箱条码(携客云)
        /// </summary>
        public string OUTER_BARCODE { get; set; }
        /// <summary>
        /// 小包条码(本原)
        /// </summary>
        public string SMALL_SN { get; set; }
        /// <summary>
        /// 大包条码(本原)
        /// </summary>
        public string BIG_SN { get; set; }
        /// <summary>
        /// 外箱条码(本原)
        /// </summary>
        public string OUTER_SN { get; set; }
        /// <summary>
        /// 供应商代码
        /// </summary>
        public string SUPP_CODE { get; set; }
        /// <summary>
        /// 生产日期
        /// </summary>
        public DateTime PROD_DATE { get; set; } = DateTime.MinValue;
        /// <summary>
        /// 备注
        /// </summary>
        public string REMARK { get; set; }
        /// <summary>
        /// 是否已导入WMS,0:未导入,1:已导入
        /// </summary>
        public int IMPORTED { get; set; } = 0;
        /// <summary>
        /// 导入WMS日期
        /// </summary>
        public DateTime IMPORTED_DATE { get; set; } = DateTime.MinValue;
        /// <summary>
        /// ERP采购单号
        /// </summary>
        public string PO_ERP_NO { get; set; }
        /// <summary>
        /// ERP采购单行号
        /// </summary>
        public int PO_LINE_NO { get; set; } = 0;
        #endregion
    }
 
}