pengmn
2025-05-20 0603ed63da0fdaeb2fb71b3455f184427373a018
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WCS.HangYang.LISTA.models.wms
{
    public class AddChangeModel
    {
        /// <summary>
        /// 5 - 仓库加存储量,用于 入库完成
        /// 6 - 库区加存储量,用于库区入库完成,
        /// 7 - 库区减存储、分配量,用于 库区出库完成
        /// 8 - 仓库减存储量,9 - 库区减存储量
        /// 10 - 仓库减分配量,用于 配货后取消,
        /// 11 - 库区减分配量,用于 配货后取消
        /// </summary>
        public int op_type { get; set; }
        public List<itemModel> item_info { get; set; } = new List<itemModel>();
        public class itemModel
        {
            public string wh_code { get; set; } = "";
            public string area_code { get; set; } = "";
            public string loc_code { get; set; } = "";
            public string item_code { get; set; }
            public string item_name { get; set; }
            public float qty { get; set; }
        }
    }
    public class moboxres
    {
        public int err_code { get; set; }
        public string err_msg { get; set; } = "";
    }
}