schangxiang@126.com
2025-09-19 a68302033da081f9ad5e82268a01892c3e129cc1
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace wcftest.sapEntity
{
    class GR
    {
        //        PO number    采购单号        4507524081
        //PO item    行号        00020
        //Material number    物料号        JEGT5007859
        //Movement type    移动类型        101
        //Plant    工厂        3TG1
        //Storage location    存储位置        G021
        //Quantity    数量        1
        /// <summary>
        /// PO采购单号
        /// </summary>
        public string poNumber { get; set; }
        /// <summary>
        /// PO采购单号
        /// </summary>
        public string poItem { get; set; }
 
        /// <summary>
        /// 物料号
        /// </summary>
        public string materialNumber { get; set; }
 
        /// <summary>
        /// 移动类型
        /// </summary>
        public string moveType { get; set; }
 
        /// <summary>
        /// 工厂
        /// </summary>
        public string plant { get; set; }
 
        /// <summary>
        /// 存储位置
        /// </summary>
        public string storageLocation { get; set; }
 
        /// <summary>
        /// 数量
        /// </summary>
        public decimal quantity { get; set; }
 
 
    }
}