bklLiudl
2024-07-23 800b01a48d309fa19a624e943b3a8fb2e8eef5c8
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
using Org.BouncyCastle.Crypto.Tls;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Model
{
    public class DepotsLocation
    {
        public string Operation { get; set; }
        public string Guid { get; set; }
        public string LocationCode { get; set; }
        public string DepotsAreaID { get; set; }
        public string DepotsAreaName { get; set; }
        public string RegionID { get; set; }
        public string RegionName { get; set; }
        public int LRow { get; set; }
        public int LColumn { get; set; }
        public int LLayer { get; set; }
        public string UseType { get; set; }
        public string UseTypeID { get; set; }
        public string Type { get; set; }
        public string TypeID { get; set; }
        public string Property { get; set; }
        public string PropertyID { get; set; }
        public string Handle { get; set; }
        public string HandleID { get; set; }
        public string TurnoverDemand { get; set; }
        public string TurnoverDemandID { get; set; }
        public string Environment { get; set; }
        public string EnvironmentID { get; set; }
        public int Weight { get; set; }
        public int Tray { get; set; }
        public int Number { get; set; }
        public int Volume { get; set; }
        public int Long { get; set; }
        public int Width { get; set; }
        public int Height { get; set; }
        public int X { get; set; }
        public int Y { get; set; }
        public int Z { get; set; }
        public int NumPlies { get; set; }
        public int IsProduct { get; set; }
        public int IsBatch { get; set; }
        public string Demo { get; set; }
        public DateTime CreatTime { get; set; }
        public string CreatUser { get; set; }
        public DateTime UpdateTime { get; set; }
        public string UpdateUser { get; set; }
        public int IsDel { get; set; }
 
        /// <summary>
        ///  此属性只是托盘出库移库使用
        /// </summary>
        public string Palno { get; set; }
    }
 
    public class QueryDLocation : DepotsLocation
    {
        public int PageIndex { get; set; }
        public int PageSize { get; set; }
    }
 
    public class Dictionary 
    {
        public string Guid { get; set; }
        public string Code { get; set; }
        public string TypeName { get; set; }
        public string TopCode { get; set; }
    }
}