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
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
using Admin.NET.Application;
using Admin.NET.Core;
 
/*
 * @author : ly
 * @date : 2024/5/10下午1:42:36
 * @desc : 库龄报表
 */
namespace Admin.NET.Application.Entity
{
    /// <summary>
    /// 库龄报表-视图
    /// </summary>
    [MySugarTableViewAttribute("v_ware_age_warm", "库龄报表")]
    public class v_ware_age_warm
    {
        /// <summary>
        /// 物料名称
        /// </summary>
        [SugarColumn(ColumnName = "MaterialName", ColumnDescription = "物料名称", Length = 50)]
 
        public string MaterialName { get; set; }
 
 
        /// <summary>
        /// 物料编号
        /// </summary>
        [Required]
        [SugarColumn(ColumnName = "MaterialCode", ColumnDescription = "物料编号", Length = 50)]
 
        public string MaterialCode { get; set; }
 
 
        /// <summary>
        /// 库位编码
        /// </summary>
        [SugarColumn(ColumnName = "PlaceCode", ColumnDescription = "库位编码", Length = 50)]
 
        public string PlaceCode { get; set; }
 
        /// <summary>
        /// 跟踪码
        /// </summary>
        [Required]
        [SugarColumn(ColumnName = "SNCode", ColumnDescription = "跟踪码", Length = 255)]
 
        public string SNCode { get; set; }
 
        /// <summary>
        /// 预警库龄 
        /// </summary>
 
        [SugarColumn(ColumnName = "QualityAssurance", ColumnDescription = "预警库龄", Length = 10, DecimalDigits = 3)]
        public decimal? QualityAssurance { get; set; }
 
        /// <summary>
        /// 库龄
        /// </summary>
 
        [SugarColumn(ColumnName = "WareAge", ColumnDescription = "库龄")]
        public int? WareAge { get; set; }
 
 
        /// <summary>
        /// 超期天数
        /// </summary>
 
        [SugarColumn(ColumnName = "OverDueDays", ColumnDescription = "超期天数", Length = 10, DecimalDigits = 3)]
        public decimal? OverDueDays { get; set; }
 
 
 
        /// <summary>
        /// 入库时间
        /// </summary>
 
        [SugarColumn(ColumnName = "RecordInsertTime", ColumnDescription = "入库时间")]
        public DateTime? RecordInsertTime { get; set; }
 
        /// <summary>
        /// 容器号
        /// </summary>
        public string? ContainerCode {  get; set; }
 
        /// <summary>
        /// 库区
        /// </summary>
        public string? AreaName { get; set; }
    }
}