ke_junjie
2025-06-04 84620534eb627e95811b971a4b552b6a177829bf
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
using Furion.DatabaseAccessor;
using iWare.Wms.Core.Enum;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
 
namespace iWare.Wms.Core
{
    /// <summary>
    /// 库区
    /// </summary>
    [Table("ware_location_vs_container")]
    [Comment("库位与容器")]
    public class WareLocationVsContainer : DEntityBase
    {
        /// <summary>
        /// 仓库代码    
        /// </summary>
        [Comment("仓库代码")]
        public string WareStorehouseCode { get; set; }
 
        /// <summary>
        /// 区域代码    
        /// </summary>
        [Comment("区域代码")]
        public string WareRegionCode { get; set; }
 
        /// <summary>
        /// 库位代码    
        /// </summary>
        [Comment("库位代码")]
        public string WareLocationCode { get; set; }
 
        /// <summary>
        /// 容器Code    
        /// </summary>
        [Comment("容器Code")]
        public string WareContainerCode { get; set; }
 
        /// <summary>
        /// 容器Name    
        /// </summary>
        [Comment("容器Name")]
        public string WareContainerName { get; set; }
 
        /// <summary>
        /// 是否空容器    
        /// </summary>
        [Comment("是否需要移库")]
        public bool? IsEmptyContainer { get; set; }
 
        /// <summary>
        /// 状态-正常_0、停用_1、删除_2    
        /// </summary>
        [Comment("状态-正常_0、停用_1、删除_2")]
        public int? Status { get; set; }
 
        /// <summary>
        /// 备注    
        /// </summary>
        [Comment("备注")]
        public string Remarks { get; set; }
 
        /// <summary>
        /// 排
        /// </summary>
        public int? Row { get; set; }
 
        /// <summary>
        /// 巷道
        /// </summary>
        public int? Lane { get; set; }
 
        /// <summary>
        /// 库位类型编码   
        /// </summary>
        [Comment("库位类型编码")]
        public string LocTypeCode { get; set; }
 
        /// <summary>
        /// 伸位
        /// </summary>
        [Comment("伸位")]
        public DeepcellNoEnum? DeepcellNo { get; set; }
 
        /// <summary>
        /// 伸位号
        /// </summary>
        [Comment("伸位号")]
        public string UnionCode { get; set; }
    }
}