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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA.Common.CustomModels
{
    public class OutBoundDetailModel
    {
        /// <summary>
        /// 货位ID
        /// </summary>
        public string location_id { get; set; }
 
        /// <summary>
        /// 重量
        /// </summary>
        public string containerhead_text1 { get; set; }
 
        /// <summary>
        /// 片数
        /// </summary>
        public string containerdtl_qty { get; set; }
 
        /// <summary>
        /// 批次号
        /// </summary>
        public string containerdtl_batch { get; set; }
 
        /// <summary>
        /// 物料编号
        /// </summary>
        public string materiel_id { get; set; }
 
        /// <summary>
        /// 物料名称
        /// </summary>
        public string materiel_name { get; set; }
 
        /// <summary>
        /// 入库时间
        /// </summary>
        public DateTime containerdtl_createtime { get; set; }
 
        /// <summary>
        /// 任务状态
        /// </summary>
        public string task_status { get; set; }
 
        /// <summary>
        /// 库存ID
        /// </summary>
        public string containerdtl_id { get; set; }
 
        /// <summary>
        /// 库存ID
        /// </summary>
        public string containerhead_text3 { get; set; }
 
        /// <summary>
        /// 库存ID
        /// </summary>
        public string containerdtl_state { get; set; }
    }
}