heshaofeng
4 天以前 a2f948006c6c7e918ba4f2e66d477cc2d5017a75
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
100
101
102
103
104
105
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core.DB.Models;
 
namespace WIDESEA_Model.Models.Check
{
    /// <summary>
    /// 
    ///</summary>
    [SugarTable("Dt_ReCheckOrder")]
    public class Dt_ReCheckOrder : BaseEntity
    {
 
 
        /// <summary>
        /// 备  注:
        /// 默认值:
        ///</summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int Id { get; set; }
 
        /// <summary>
        /// 备  注:
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "OrderNo")]
        public string OrderNo { get; set; } = null!;
 
        /// <summary>
        /// 备  注:
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "MaterielCode")]
        public string MaterielCode { get; set; } = null!;
 
        /// <summary>
        /// 
        /// </summary>
        public string MaterielName { get; set; }    
 
        /// <summary>
        /// 备  注:
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "BatchNo")]
        public string BatchNo { get; set; } = null!;
 
        /// <summary>
        /// 备  注:
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "WarehouseCode")]
        public string WarehouseCode { get; set; } = null!;
 
        /// <summary>
        /// 备  注:
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "Unit")]
        public string Unit { get; set; } = null!;
 
        /// <summary>
        /// 备  注:
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "FactoryArea")]
        public string FactoryArea { get; set; } = null!;
 
        /// <summary>
        /// 备  注:
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "Result")]
        public int Result { get; set; }
 
        /// <summary>
        /// 备  注:
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "InspectionNumber")]
        public int InspectionNumber { get; set; }
 
        /// <summary>
        /// 备  注:
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "Qty")]
        public decimal Qty { get; set; }
 
        /// <summary>
        /// 备  注:
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "SignSeq")]
        public int SignSeq { get; set; }
 
 
 
 
    }
}