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
using System;
 
namespace Model
{
    public class DepotsArea
    {
        public int ID { get; set; }
 
        public string DepotsCode { get; set; }
 
        public string DepotsName { get; set; }
 
        public string RegionID { get; set; }                  
        public string RegionName { get; set; }
 
        public int DepotsRow { get; set; }
        public int DepotsColumn { get; set; }
        public int DepotsLayer { get; set; }
 
        public string InStorageLocation { get; set; }
 
        public string OutStorageLocation { get; set; }
 
        public string Demo { get; set; }
 
        public int IsDel { get; set; }
 
        public string Guid { get; set; }
 
        public DateTime CreatTime { get; set; }
 
        public string CreatUser { get; set; }
 
        public DateTime UpdateTime { get; set; }
 
        public string UpdateUser { get; set; }
 
    }
 
    public class QueryDepotsArea : DepotsArea 
    {
        public int pageIndex { get; set; }
        public int pageSize { get; set; }
    }
 
    public class SetDepotsArea : DepotsArea 
    {
        public string Operation { get; set; }
    }
}