kazelee
2025-05-16 6abc355aeb4e6f7960c11795dbbcc26396b0c888
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WCS.Mobox3.DSZSH.Models {
    public class DebugModel {
        public class LocCntrCg {
            public string Note { get; set; } // 仅用于备注
 
            public string LocCode { get; set; }
            public string LocArea { get; set; }
            public string CntrCode { get; set; }
            public string CntrType { get; set; }
            public string ItemCode { get; set; }
            public string BatchNo { get; set; }
        }
    }
}