schangxiang@126.com
2025-09-19 9be9c3784b2881a3fa25e93ae2033dc2803c0ed0
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace wcftest.EnumDefine
{
    public class updateStock
    {
 
        /// <summary>
        /// 限用日期
        /// </summary>
        public DateTime? LimitDate { get; set; }
 
        /// <summary>
        /// 操作人
        /// </summary>
        public string userName { get; set; }
 
        /// <summary>
        /// 库存id
        /// </summary>
        public int stockId { get; set; }
        /// <summary>
        /// 跟踪号
        /// </summary>
        public string tracknumber { get; set; }
        /// <summary>
        /// 销售单号
        /// </summary>
        public string saleCode { get; set; }
        /// <summary>
        /// 销售项号
        /// </summary>
        public string saleItem { get; set; }
        /// <summary>
        /// 产品编号
        /// </summary>
        public string productCode { get; set; }
        /// <summary>
        /// 库存量
        /// </summary>
        public decimal productStorage { get; set; }
 
        // "{\"taskForm\":{\"stockId\":14435,\"tracknumber\":\"  22\",\"saleCode\":\"222\",\"productCode\":\"A7EQD-5102400896\",\"productStorage\":\"    55    \",\"saleItem\":\"222\"}}"
 
    }
}