1
yhj
2024-07-24 5e5d945e91568b973faa27d8ab0bcef99fc4a6c5
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
using SqlSugar;
 
namespace CSFrameworkV5.QL.ql
{
    [SugarTable("OverdueMaterial")]
    public class SqlOverdueMaterial
    {
        [SugarColumn(IsPrimaryKey = true, ColumnDescription = "唯一标识符")]
        public string ID { get; set; }
 
        [SugarColumn(ColumnDescription = "客户简要名称")]
        public string CustomerAbbreviation { get; set; }
 
        [SugarColumn(ColumnDescription = "订单唯一标识号")]
        public string OrderNumber { get; set; }
 
        [SugarColumn(ColumnDescription = "产品名称")]
        public string ProductName { get; set; }
 
        [SugarColumn(ColumnDescription = "产品型号")]
        public string ProductModel { get; set; }
 
        [SugarColumn(ColumnDescription = "订单数量")]
        public int OrderQuantity { get; set; }
 
        [SugarColumn(ColumnDescription = "计划交货日期")]
        public string DeliveryDate { get; set; }
 
        [SugarColumn(ColumnDescription = "产品上线日期")]
        public string OnlineDate { get; set; }
 
        [SugarColumn(ColumnDescription = "欠料名称")]
        public string ShortageName { get; set; }
 
        [SugarColumn(ColumnDescription = "欠料编号")]
        public string ShortageNumber { get; set; }
 
        [SugarColumn(ColumnDescription = "欠料数量")]
        public int ShortageQuantity { get; set; }
 
        [SugarColumn(ColumnDescription = "欠料数量单位")]
        public string Unit { get; set; }
 
        [SugarColumn(ColumnDescription = "要求欠料到位时间")]
        public string RequiredArrivalDate { get; set; }
 
        [SugarColumn(ColumnDescription = "欠料逾期时间")]
        public string OverdueDate { get; set; }
 
        [SugarColumn(ColumnDescription = "负责处理欠料问题人员")]
        public string ResponsiblePerson { get; set; }
    }
}