kazelee
2025-05-09 62e3ff7506396fcb7f7737900806e838c2466aa3
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WCS.Mobox3.DSZSH.Models {
    /// <summary>
    /// Debug使用的数据模型
    /// </summary>
    public class DebugModel {
        public class LocCntrCg {
            public string LocCode { get; set; }
            public string LocArea { get; set; }
            public string CntrCode { get; set; }
            public string CntrType { get; set; }
            public string CgId { get; set; }
            public string BatchNo { get; set; }
        }
 
        public class OutboundOrder {
            public string No { get; set; }
            public string CgId { get; set; }
            public string BatchNo { get; set; }
            public string EndArea { get; set; }
            public int Qty { get; set; }
        }
    }
}