Admin
5 天以前 bd6818fc9d40f343547bafca0743658f3c0379dc
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
using System;
using System.Collections.Generic;
using System.Text;
 
namespace WIDESEA.Common.CustomModels
{
    public class LocationContainer
    {
        /// <summary>
        /// 货位ID
        /// </summary>
        public string LocationID { get; set; }
 
        /// <summary>
        /// 数量
        /// </summary>
        public decimal? Qty { get; set; }
 
        /// <summary>
        /// 入库时间
        /// </summary>
        public DateTime? InboundDatetime { get; set; }
 
        /// <summary>
        /// 库存ID
        /// </summary>
        public string ContainerID { get; set; }
 
        /// <summary>
        /// 列
        /// </summary>
        public int? LocationColumn { get; set; }
 
        /// <summary>
        /// 层
        /// </summary>
        public int? LocationLayer { get; set; }
 
        /// <summary>
        /// 行
        /// </summary>
        public int? LocationLine { get; set; }
 
        /// <summary>
        /// 库存明细ID
        /// </summary>
        public string ContainerDetailID { get; set; }
 
        /// <summary>
        /// 托盘号
        /// </summary>
        public string Barcode { get; set; }
 
        /// <summary>
        /// 物料编号
        /// </summary>
        public string MaterielID { get; set; }
 
        /// <summary>
        /// 物料名称
        /// </summary>
        public string MatereilName { get; set; }
 
        /// <summary>
        /// 物料类型
        /// </summary>
        public string MatereilType { get; set; }
 
        /// <summary>
        /// 生产日期
        /// </summary>
        public DateTime? ProductTime { get; set; }
 
        /// <summary>
        /// 供应商批次
        /// </summary>
        public string Batch { get; set; }
 
        /// <summary>
        /// 重量
        /// </summary>
        public decimal? text1 { get; set; }
 
        /// <summary>
        /// 捆号
        /// </summary>
        public string text3 { get; set; }
    }
}