payne
2024-04-23 2be79691461677a65a8ed1258c850a129642b797
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
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
 
/*
 * @author : 刘文奇
 * @date : 2024/4/23下午4:40:38
 * @desc : 仓库表
 */
namespace Admin.NET.Core
{
    /// <summary>
    /// 仓库表
    /// </summary>
    [Table("wms_warehouse")]
    [Comment("仓库表")]
    public class WmsWarehouse : DEntityBase
    {
 
 
        /// <summary>
        /// 仓库编号
        /// </summary>
        [Comment("仓库编号")]
        [Required]
        [MaxLength(50)]
        public string Code { get; set; }
 
 
        /// <summary>
        /// 仓库名称
        /// </summary>
        [Comment("仓库名称")]
        [Required]
        [MaxLength(255)]
        public string Name { get; set; }
 
 
        /// <summary>
        /// 仓库地址
        /// </summary>
        [Comment("仓库地址")]
        [MaxLength(255)]
        public string Address { get; set; }
 
 
        /// <summary>
        /// 工厂编号
        /// </summary>
        [Comment("工厂编号")]
        [MaxLength(255)]
        public string FactoryCode { get; set; }
 
 
        /// <summary>
        /// 长
        /// </summary>
        [Comment("长")]
 
        [Column("Length", TypeName = "decimal(10,3)")]
        public decimal? Length { get; set; }
 
 
        /// <summary>
        /// 宽
        /// </summary>
        [Comment("宽")]
 
        [Column("Width", TypeName = "decimal(10,3)")]
        public decimal? Width { get; set; }
 
 
        /// <summary>
        /// 高
        /// </summary>
        [Comment("高")]
 
        [Column("Height", TypeName = "decimal(10,3)")]
        public decimal? Height { get; set; }
 
 
        /// <summary>
        /// 基本单元
        /// </summary>
        [Comment("基本单元")]
        [MaxLength(255)]
        public string BaseUnit { get; set; }
 
 
        /// <summary>
        /// 定位
        /// </summary>
        [Comment("定位")]
        [MaxLength(255)]
        public string Position { get; set; }
 
 
        /// <summary>
        /// 备注
        /// </summary>
        [Comment("备注")]
        [MaxLength(255)]
        public string Remarks { get; set; }
 
 
 
 
 
 
 
 
 
    }
}