zhanghonglin
10 天以前 cfb3f2c7e9cde8cc2eb2a19263d0802c0c5410a3
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Magicodes.ExporterAndImporter.Core;
using SqlSugar;
using WIDESEAWCS_Core.DB.Models;
using WIDESEAWCS_Model.Models.TaskInfo;
 
namespace WIDESEA_Model.Models.Basic
{
    [SugarTable(nameof(Dt_FillingOrder), "罐装单")]
    public class Dt_FillingOrder : BaseEntity
    {
        /// <summary>
        /// 主键
        /// </summary>
        [ImporterHeader(Name = "主键")]
        [ExporterHeader(DisplayName = "主键")]
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int Id { get; set; }
 
        /// <summary>
        /// 品号
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "品号")]
        public string ArticleNum { get; set; }
 
        /// <summary>
        /// 品名
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "品名")]
        public string ArticleName { get; set; }
 
        /// <summary>
        /// 规格
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "规格")]
        public string Specification { get; set; }
 
        /// <summary>
        /// 批号
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "批号")]
        public string batchNum { get; set; }
 
        /// <summary>
        /// 条码值
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "条码值")]
        public string BarCode { get; set; }
 
        /// <summary>
        /// 派工单号
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "派工单号")]
        public string WorkOrder { get; set; }
 
        /// <summary>
        /// 条码数量
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "条码数量")]
        public decimal BarNum { get; set; }
 
        /// <summary>
        /// 创建时间
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "创建时间")]
        public string CreationTime { get; set; }
 
        /// <summary>
        /// 派工ID
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "派工ID")]
        public long WorkID { get; set; }
 
        /// <summary>
        /// 产品包装桶类型
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "产品包装桶类型")]
        public string ProductType { get; set; }
 
        /// <summary>
        /// 条码状态
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "条码状态")]
        public int BarStatus { get; set; }
 
        /// <summary>
        /// 条码值id
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "条码值id")]
        public long BarCodeID { get; set; }
 
        /// <summary>
        /// 品号id
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "品号id")]
        public long ArticleNumID { get; set; }
 
        /// <summary>
        /// 物料名称
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "物料名称")]
        public string MaterialName { get; set; }
 
        /// <summary>
        /// 货区
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "货区")]
        public string WarehouseType { get; set; }
 
        /// <summary>
        /// 物料编码
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "物料编码")]
        public string MaterialCode { get; set; }
 
        /// <summary>
        /// 备用1
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "备用1")]
        public string Standby1 { get; set; }
 
        /// <summary>
        /// 备用2
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "备用2")]
        public string Standby2 { get; set; }
    }
}