schangxiang@126.com
2025-03-10 8893638de46547923e0684220df3d9782f7ec283
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
using Admin.NET.Core;
 
/*
 * @author : 刘文奇
 * @date : 2024/5/10下午1:39:40
 * @desc : 仓库表
 */
namespace Admin.NET.Application.Entity
{
    /// <summary>
    /// 仓库表
    /// </summary>
    [SugarTable("wms_base_warehouse", "仓库表")]
    public class WmsBaseWarehouse : EntityBase
    {
 
 
        /// <summary>
        /// 仓库编号
        /// </summary>
        [Required]
        [SugarColumn(ColumnName = "Code", ColumnDescription = "仓库编号", Length = 50)]
 
        public string Code { get; set; }
 
 
        /// <summary>
        /// 仓库名称
        /// </summary>
        [Required]
        [SugarColumn(ColumnName = "Name", ColumnDescription = "仓库名称", Length = 50)]
 
        public string Name { get; set; }
 
 
        /// <summary>
        /// 仓库地址
        /// </summary>
        [SugarColumn(ColumnName = "Address", ColumnDescription = "仓库地址", Length = 255)]
 
        public string? Address { get; set; }
 
 
        /// <summary>
        /// 工厂ID
        /// </summary>
        [Required]
 
        [SugarColumn(ColumnName = "FactoryId", ColumnDescription = "工厂ID")]
        public long FactoryId { get; set; }
 
 
        /// <summary>
        /// 工厂名称
        /// </summary>
        [SugarColumn(ColumnName = "FactoryName", ColumnDescription = "工厂名称", Length = 255)]
 
        public string? FactoryName { get; set; }
 
 
        /// <summary>
        /// 工厂编号
        /// </summary>
        [SugarColumn(ColumnName = "FactoryCode", ColumnDescription = "工厂编号", Length = 50)]
 
        public string? FactoryCode { get; set; }
 
 
        /// <summary>
        /// 长
        /// </summary>
 
        [SugarColumn(ColumnName = "Length", ColumnDescription = "长", Length = 10, DecimalDigits = 3)]
        public decimal? Length { get; set; }
 
 
        /// <summary>
        /// 宽
        /// </summary>
 
        [SugarColumn(ColumnName = "Width", ColumnDescription = "宽", Length = 10, DecimalDigits = 3)]
        public decimal? Width { get; set; }
 
 
        /// <summary>
        /// 高
        /// </summary>
 
        [SugarColumn(ColumnName = "Height", ColumnDescription = "高", Length = 10, DecimalDigits = 3)]
        public decimal? Height { get; set; }
 
 
        /// <summary>
        /// 基本单元
        /// </summary>
        [SugarColumn(ColumnName = "BaseUnit", ColumnDescription = "基本单元", Length = 255)]
 
        public string? BaseUnit { get; set; }
 
 
        /// <summary>
        /// 定位
        /// </summary>
        [SugarColumn(ColumnName = "Position", ColumnDescription = "定位", Length = 255)]
 
        public string? Position { get; set; }
 
 
        /// <summary>
        /// 是否禁用
        /// </summary>
        [Required]
 
        [SugarColumn(ColumnName = "IsDisabled", ColumnDescription = "是否禁用")]
        public bool IsDisabled { get; set; }
 
 
        /// <summary>
        /// 备注
        /// </summary>
        [SugarColumn(ColumnName = "Remarks", ColumnDescription = "备注", Length = 255)]
 
        public string? Remarks { get; set; }
 
 
 
 
 
 
 
 
 
    }
}