schangxiang@126.com
2025-09-17 ff43ddf18764629ff875478e4e47a7281cbd230a
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace iWareTestForm.Model
{
    public class MyStoreForUpdateStoreBySAP
    {
 
        /// <summary>
        /// 物料号
        /// </summary>
        public string MaterialCode { get; set; }
 
        /// <summary>
        /// 物料描述
        /// </summary>
        public string MaterialName { get; set; }
 
        /// <summary>
        /// SAP位置
        /// </summary>
        public string SapLocation { get; set; }
 
        /// <summary>
        /// 批次号
        /// </summary>
        public string BatchNo { get; set; }
 
        /// <summary>
        /// 实际数量
        /// </summary>
        public string Str_Quantity { get; set; }
 
        /// <summary>
        /// 实际数量
        /// </summary>
        public decimal Quantity
        {
            get
            {
                return Convert.ToDecimal(Str_Quantity);
            }
        }
 
 
        /// <summary>
        /// 库位编号
        /// </summary>
        public string LocationCode { get; set; }
 
 
    }
 
}