王佳豪
2021-06-26 718f604deb342b0bee6c588bb44e22ced3371fb8
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
package com.slcf.bean;
 
/**
 * 库位初始化传参bean
 * @author admin
 * @date 2018年11月7日
 */
public class LocationEntity {
    private int s_row;
 
    private int e_row;
    
    private int s_bay;
    
    private int e_bay;
    
    private int s_lev;
    
    private int e_lev;
    
    private int loc_type;
    
    private int whs_type;
 
    /**
     * @return the s_row
     */
    public int getS_row() {
        return s_row;
    }
 
    /**
     * @param s_row the s_row to set
     */
    public void setS_row(int s_row) {
        this.s_row = s_row;
    }
 
    /**
     * @return the e_row
     */
    public int getE_row() {
        return e_row;
    }
 
    /**
     * @param e_row the e_row to set
     */
    public void setE_row(int e_row) {
        this.e_row = e_row;
    }
 
    /**
     * @return the s_bay
     */
    public int getS_bay() {
        return s_bay;
    }
 
    /**
     * @param s_bay the s_bay to set
     */
    public void setS_bay(int s_bay) {
        this.s_bay = s_bay;
    }
 
    /**
     * @return the e_bay
     */
    public int getE_bay() {
        return e_bay;
    }
 
    /**
     * @param e_bay the e_bay to set
     */
    public void setE_bay(int e_bay) {
        this.e_bay = e_bay;
    }
 
    /**
     * @return the s_lev
     */
    public int getS_lev() {
        return s_lev;
    }
 
    /**
     * @param s_lev the s_lev to set
     */
    public void setS_lev(int s_lev) {
        this.s_lev = s_lev;
    }
 
    /**
     * @return the e_lev
     */
    public int getE_lev() {
        return e_lev;
    }
 
    /**
     * @param e_lev the e_lev to set
     */
    public void setE_lev(int e_lev) {
        this.e_lev = e_lev;
    }
 
    /**
     * @return the loc_type
     */
    public int getLoc_type() {
        return loc_type;
    }
 
    /**
     * @param loc_type the loc_type to set
     */
    public void setLoc_type(int loc_type) {
        this.loc_type = loc_type;
    }
 
    public int getWhs_type() {
        return whs_type;
    }
 
    public void setWhs_type(int whs_type) {
        this.whs_type = whs_type;
    }
 
}