payne
2024-04-25 bf915c71f7ab3fcd9a7f81ed18f3a10c68d50dc0
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
 
/*
 * @author : 刘文奇
 * @date : 2024/4/23下午6:31:24
 * @desc : 库区表
 */
namespace Admin.NET.Core
{
    /// <summary>
    /// 库区表
    /// </summary>
    [Table("wms_area")]
    [Comment("库区表")]
    public class WmsArea : DEntityBase
    {
 
 
        /// <summary>
        /// 库区编码
        /// </summary>
        [Comment("库区编码")]
        [Required]
        [MaxLength(50)]
        public string AreaCode { get; set; }
 
 
        /// <summary>
        /// 仓库编号
        /// </summary>
        [Comment("仓库编号")]
        [Required]
        [MaxLength(50)]
        public string WarehouseCode { get; set; }
 
 
        /// <summary>
        /// 仓库名称
        /// </summary>
        [Comment("仓库名称")]
        [Required]
        [MaxLength(255)]
        public string WarehouseName { get; set; }
 
 
        /// <summary>
        /// 库区名称
        /// </summary>
        [Comment("库区名称")]
        [Required]
        [MaxLength(50)]
        public string AreaName { get; set; }
 
 
        /// <summary>
        /// 库区描述
        /// </summary>
        [Comment("库区描述")]
        [MaxLength(50)]
        public string AreaDesc { get; set; }
 
 
        /// <summary>
        /// 库区状态
        /// </summary>
        [Comment("库区状态")]
        [Required]
 
        public int AreaStatus { get; set; }
 
 
        /// <summary>
        /// ERP代码
        /// </summary>
        [Comment("ERP代码")]
        [Required]
        [MaxLength(50)]
        public string ErpCode { get; set; }
 
 
        /// <summary>
        /// 所属仓库
        /// </summary>
        [Comment("所属仓库")]
        [Required]
 
        public long WarehouseId { get; set; }
 
 
        /// <summary>
        /// 零件级管控
        /// </summary>
        [Comment("零件级管控")]
        [Required]
 
        public bool IsBarcodeLevelControl { get; set; }
 
 
        /// <summary>
        /// 检验先进先出
        /// </summary>
        [Comment("检验先进先出")]
        [Required]
 
        public bool IsFIFO { get; set; }
 
 
        /// <summary>
        /// 零件级管控
        /// </summary>
        [Comment("零件级管控")]
        [Required]
 
        public bool IsPartLevelControl { get; set; }
 
 
        /// <summary>
        /// 允许混淆
        /// </summary>
        [Comment("允许混淆")]
        [Required]
 
        public bool IsAllowConfusion { get; set; }
 
 
        /// <summary>
        /// 允许负库存
        /// </summary>
        [Comment("允许负库存")]
        [Required]
 
        public bool IsAllowNegativeInventory { get; set; }
 
 
        /// <summary>
        /// 是否虚拟
        /// </summary>
        [Comment("是否虚拟")]
        [Required]
 
        public bool IsVirtually { get; set; }
 
 
        /// <summary>
        /// 是否禁用
        /// </summary>
        [Comment("是否禁用")]
        [Required]
 
        public bool IsDisabled { get; set; }
 
 
 
 
 
 
 
 
 
    }
}