wxw
2025-05-12 c7c2f7aa20427204944ba80a2704232b2f281582
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
74
75
76
77
78
79
80
81
82
83
84
85
using System;
using System.Linq;
using System.Text;
using SqlSugar;
 
namespace WMS.Entity.BllMoveEntity
{
    ///<summary>
    ///移库表
    ///</summary>
    [SugarTable("BllPalletMove")]
    public class BllPalletMove:BaseEntity
    {
        /// <summary>
        /// Desc:单号
        /// Default:
        /// Nullable:True
        /// </summary>           
        public string PMNo {get;set;}
 
        /// <summary>
        /// Desc:移出库房号
        /// Default:
        /// Nullable:True
        /// </summary>           
        public string OutWareHouseNo {get;set;}
 
        /// <summary>
        /// Desc:移出库区号
        /// Default:
        /// Nullable:True
        /// </summary>           
        public string OutAreaNo {get;set;}
 
        /// <summary>
        /// Desc:移出巷道号
        /// Default:
        /// Nullable:True
        /// </summary>           
        public string OutRoadwayNo {get;set;}
 
        /// <summary>
        /// Desc:移出储位号
        /// Default:
        /// Nullable:True
        /// </summary>           
        public string OutLocatNo {get;set;}
 
        /// <summary>
        /// Desc:移入库房号
        /// Default:
        /// Nullable:True
        /// </summary>           
        public string InWareHouseNo {get;set;}
 
        /// <summary>
        /// Desc:移入库区号
        /// Default:
        /// Nullable:True
        /// </summary>           
        public string InAreaNo {get;set;}
 
        /// <summary>
        /// Desc:移入巷道号
        /// Default:
        /// Nullable:True
        /// </summary>           
        public string InRoadwayNo {get;set;}
 
        /// <summary>
        /// Desc:移入储位号
        /// Default:
        /// Nullable:True
        /// </summary>           
        public string InLocatNo {get;set;}
 
        /// <summary>
        /// Desc:状态
        /// Default:
        /// Nullable:True
        /// </summary>           
        public string Status {get;set;}
 
    }
}