schangxiang@126.com
2025-09-17 ff43ddf18764629ff875478e4e47a7281cbd230a
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
using Admin.NET.Core;
 
/*
 * @author : 您的名字
 * @date : 2024/7/25下午4:57:55
 * @desc : 库存快照表
 */
namespace Admin.NET.Application.Entity
{
    /// <summary>
    /// 库存快照表
    /// </summary>
    [SugarTable("wms_stock_snapshot", "库存快照表")]
    public class WmsStockSnapshot : EntityBase
    {
 
 
        /// <summary>
        /// 快照号
        /// </summary>
        [SugarColumn(ColumnName = "SnapshotNo", ColumnDescription = "快照号", Length = 50)]
 
        public string? SnapshotNo { get; set; }
 
        /// <summary>
        /// 快照日期
        /// </summary>
        [SugarColumn(ColumnName = "SnapshotDate", ColumnDescription = "快照日期", Length = 50)]
 
        public string? SnapshotDate { get; set; }
 
 
        /// <summary>
        /// 备注
        /// </summary>
        [SugarColumn(ColumnName = "Remark", ColumnDescription = "备注", Length = 50)]
 
        public string? Remark { get; set; }
 
 
 
 
 
 
 
 
 
    }
}