服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2024-03-23 5ec2816b25ccc33855c48da7f7f9305e21e6dc38
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 SqlSugar;
using System;
 
namespace Tiger.Model.Entitys.MES
{
    [SugarTable("erp.c_stock_pallet_t", "c_stock_pallet_t")]
    public class C_Stock_Pallet_T
    {
        /// <summary>
        /// 单号
        /// </summary>
        public string STOCK_NO { get; set; }
 
        /// <summary>
        /// 栈板号
        /// </summary>
        public string PALLET_NO { get; set; }
 
        /// <summary>
        /// 入库时间
        /// </summary>
        public DateTime STOCK_TIME { get; set; }
 
        /// <summary>
        /// 是否完成
        /// </summary>
        public int UP_FLAG { get; set; }
 
        /// <summary>
        /// 入库次数
        /// </summary>
        public int UP_COUNT { get; set; }
 
        /// <summary>
        /// 更新时间
        /// </summary>
        public DateTime UP_TIME { get; set; }
 
        /// <summary>
        /// 回写结果
        /// </summary>
        public string UP_MSG { get; set; }
    }
}