yirongjin
2025-07-23 c2da0b81321e66e3c3706d6833ad4c92c62d0935
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
using iWare.Wms.Core.Enum;
using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace iWare.Wms.Core
{
    /// <summary>
    /// 按容器分组查询库存
    /// </summary>
    [Table("v_ware_inventory_by_container")]
    [Comment("按容器分组查询库存")]
    public class v_ware_inventory_by_container : DEntityBase
    {
        ///// <summary>
        ///// 库区ID    
        ///// </summary>
        //[Comment("库区ID")]
        //public long? LocTypeId { get; set; }
        /// <summary>
        /// 库区名称    
        /// </summary>
        [Comment("库区名称")]
        public string LocTypeName { get; set; }
        /// <summary>
        /// 库位Code    
        /// </summary>
        [Comment("库位Code")]
        public string WareLocationCode { get; set; }
 
        /// <summary>
        /// 容器Code  
        /// </summary>
        [Comment("容器Code")]
        public string WareContainerCode { get; set; }
 
        /// <summary>
        /// 排
        /// </summary>
        [Comment("排")]
        public int? Row { get; set; }
 
        /// <summary>
        /// 巷道
        /// </summary>
        public int? Lane { get; set; }
 
        /// <summary>
        /// 容器Code  
        /// </summary>
        [Comment("物料Code")]
        public string WareMaterialCode { get; set; }
 
        /// <summary>
        /// 容器Code  
        /// </summary>
        [Comment("物料Name")]
        public string WareMaterialName { get; set; }
 
        /// <summary>
        /// 入库单    
        /// </summary>
        [Comment("入库单")]
        public string OrdersNo { get; set; }
        /// <summary>
        /// 单据类型    
        /// </summary>
        [Comment("单据类型")]
        public string OrderType { get; set; }
        /// <summary>
        /// 采购单号(PO)    
        /// </summary>
        [Comment("采购单号(PO)")]
        public string PurchaseNo { get; set; }
 
        /// <summary>
        /// 送货单号    
        /// </summary>
        [Comment("送货单号")]
        public string DeliveryNo { get; set; }
 
        /// <summary>
        /// 收货单    
        /// </summary>
        [Comment("收货单")]
        public string CollectNo { get; set; }
 
        /// <summary>
        /// 物料数量    
        /// </summary>
        [Comment("物料数量")]
        public decimal? Quantity { get; set; }
 
        /// <summary>
        /// 物料单位    
        /// </summary>
        [Comment("物料单位")]
        public string Unit { get; set; }
 
        /// <summary>
        /// 项目批次号    
        /// </summary>
        [Comment("项目批次号")]
        public string ItemBatchNo { get; set; }
 
        /// <summary>
        /// 备注    
        /// </summary>
        [Comment("备注")]
        public string Remarks { get; set; }
 
        /// <summary>
        /// 是否锁定    
        /// </summary>
        [Comment("是否锁定")]
        public bool? IsLocked { get; set; }
 
        /// <summary>
        /// 批次号
        /// </summary>
        [Comment("批次号")]
        public string BatchNo { get; set; }
 
        /// <summary>
        /// 托盘类型编码
        /// </summary>
        [Comment("托盘类型编码")]
        public string ContainerType { get; set; }
 
        /// <summary>
        /// 库存状态
        /// </summary>
        [Comment("库存状态")]
        public StockStatusEnum? StockStatus { get; set; }
 
        /// <summary>
        /// 是否空托
        /// </summary>
        [Comment("是否空托")]
        public bool? IsEmptyContainer { get; set; }
 
        /// <summary>
        /// 伸位
        /// </summary>
        [Comment("伸位")]
        public DeepcellNoEnum? DeepcellNo { get; set; }
 
        /// <summary>
        /// 伸位号
        /// </summary>
        [Comment("伸位号")]
        public string UnionCode { get; set; }
 
        /// <summary>
        /// 零件号
        /// </summary>
        [Comment("零件号")]
        public string PartCode { get; set; }
 
        /// <summary>
        /// 零件名称
        /// </summary>
        [Comment("零件名称")]
        public string PartName { get; set; }
 
        /// <summary>
        /// 绑定库位
        /// </summary>
        [Comment("绑定库位")]
        public string RealLocationCode { get; set; }
 
        /// <summary>
        /// 生产线
        /// </summary>
        [Comment("生产线")]
        public LineTypeEnum? LineType { get; set; }
 
        /// <summary>
        /// 车型
        /// </summary>
        public string CarType { get; set; }
    }
}