Admin
3 天以前 6184f79fcb92452dee17f5441aff77911336aa95
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
133
134
135
136
using Magicodes.ExporterAndImporter.Core;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_Model
{
    /// <summary>
    /// 仓库信息
    /// </summary>
    public class Dt_roadwayinfo
    {
        /// <summary>
        /// 主键ID
        /// </summary>
        [ImporterHeader(Name = "主键ID")]
        [ExporterHeader(DisplayName = "主键ID")]
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, IsNullable = false, ColumnDescription = "主键ID")]
        public int Id { get; set; }
 
        /// <summary>
        /// 巷道编号
        /// </summary>
        [ImporterHeader(Name = "巷道编号")]
        [ExporterHeader(DisplayName = "巷道编号")]
        [SugarColumn(IsNullable = true, Length = 20, ColumnDescription = "巷道编号")]
        public string RoadwayNo { get; set; }
 
        /// <summary>
        /// 禁用状态
        /// </summary>
        [ImporterHeader(Name = "禁用状态")]
        [ExporterHeader(DisplayName = "禁用状态")]
        [SugarColumn(IsNullable = true, ColumnDescription = "禁用状态")]
        public int? EnableStatus { get; set; }
 
        /// <summary>
        /// 入库站台编号
        /// </summary>
        [ImporterHeader(Name = "入库站台编号")]
        [ExporterHeader(DisplayName = "入库站台编号")]
        [SugarColumn(IsNullable = true, Length = 20, ColumnDescription = "入库站台编号")]
        public string InStationCode { get; set; }
 
        /// <summary>
        /// 堆垛机入库站台编号
        /// </summary>
        [ImporterHeader(Name = "堆垛机入库站台编号")]
        [ExporterHeader(DisplayName = "堆垛机入库站台编号")]
        [SugarColumn(IsNullable = true, Length = 20, ColumnDescription = "堆垛机入库站台编号")]
        public string InSCStationCode { get; set; }
 
        /// <summary>
        /// 出库站台编号
        /// </summary>
        [ImporterHeader(Name = "出库站台编号")]
        [ExporterHeader(DisplayName = "出库站台编号")]
        [SugarColumn(IsNullable = true, Length = 20, ColumnDescription = "出库站台编号")]
        public string OutStationCode { get; set; }
 
        /// <summary>
        /// 堆垛机出库站台编号
        /// </summary>
        [ImporterHeader(Name = "堆垛机出库站台编号")]
        [ExporterHeader(DisplayName = "堆垛机出库站台编号")]
        [SugarColumn(IsNullable = true, Length = 20, ColumnDescription = "堆垛机出库站台编号")]
        public string OutSCStationCode { get; set; }
 
        /// <summary>
        /// 备注
        /// </summary>
        [ImporterHeader(Name = "备注")]
        [ExporterHeader(DisplayName = "备注")]
        [SugarColumn(IsNullable = true, Length = 200, ColumnDescription = "备注")]
        public string Remark { get; set; }
 
        /// <summary>
        /// 创建者
        /// </summary>
        [ImporterHeader(Name = "创建者")]
        [ExporterHeader(DisplayName = "创建者")]
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "创建者")]
        public string Creater { get; set; }
 
        /// <summary>
        /// 创建时间
        /// </summary>
        [ImporterHeader(Name = "创建时间")]
        [ExporterHeader(DisplayName = "创建时间")]
        [SugarColumn(IsNullable = true, ColumnDescription = "创建时间")]
        public DateTime? CreateDate { get; set; }
 
        /// <summary>
        /// 修改人
        /// </summary>
        [ImporterHeader(Name = "修改人")]
        [ExporterHeader(DisplayName = "修改人")]
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "修改人")]
        public string Modifier { get; set; }
 
        /// <summary>
        /// 修改日期
        /// </summary>
        [ImporterHeader(Name = "修改日期")]
        [ExporterHeader(DisplayName = "修改日期")]
        [SugarColumn(IsNullable = true, ColumnDescription = "修改日期")]
        public DateTime? ModifyDate { get; set; }
 
        /// <summary>
        /// 仓库名称
        /// </summary>
        [ImporterHeader(Name = "仓库名称")]
        [ExporterHeader(DisplayName = "仓库名称")]
        [SugarColumn(IsNullable = true, Length = 255, ColumnDescription = "仓库名称")]
        public string WarehouseName { get; set; }
 
        /// <summary>
        /// 仓库代码
        /// </summary>
        [ImporterHeader(Name = "仓库代码")]
        [ExporterHeader(DisplayName = "仓库代码")]
        [SugarColumn(IsNullable = true, Length = 100, ColumnDescription = "仓库代码")]
        public string WarehouseNumber { get; set; }
 
        /// <summary>
        /// 仓库类型
        /// </summary>
        [ImporterHeader(Name = "仓库类型")]
        [ExporterHeader(DisplayName = "仓库类型")]
        [SugarColumn(IsNullable = true, Length = 100, ColumnDescription = "仓库类型")]
        public string WarehouseInvType { get; set; }
    }
}