#
18516761980
2021-08-16 f25c800bca726b67ea74e6ed576b038b1b9561a7
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
package com.slcf.pojo;
 
/**
 * 库位实体类
 * @author admin
 * @date 2018年11月7日
 */
public class LocationBean {
    private int whs_type;    //仓库别
    private int plt_type;    //容器别
    private int ctn_type;    //产品类型
    private String loc_no;    //库位号
    private String loc_sts;    //库位状态代号
    private String sheet_no;    //单号
    private int crn_no;    //吊车号
    private int row1;    //排号
    private int bay1;    //列号
    private int lev1;    //层号
    private String full_plt;    //满板否
    private String barcode;    //条码号
    private String modi_user;
    private String modi_time;
    private String loc_sts_name;    //库位状态名称
    private int loc_type;    //库位别
    private String loc_sts_old;   //原库位状态
    private String rowName;
    private String loc_type_desc;
    
    public int getWhs_type() {
        return whs_type;
    }
    public void setWhs_type(int whs_type) {
        this.whs_type = whs_type;
    }
    public int getPlt_type() {
        return plt_type;
    }
    public void setPlt_type(int plt_type) {
        this.plt_type = plt_type;
    }
    public int getCtn_type() {
        return ctn_type;
    }
    public void setCtn_type(int ctn_type) {
        this.ctn_type = ctn_type;
    }
    /**
     * @return the loc_no
     */
    public String getLoc_no() {
        return loc_no;
    }
    /**
     * @param loc_no the loc_no to set
     */
    public void setLoc_no(String loc_no) {
        this.loc_no = loc_no;
    }
    /**
     * @return the loc_sts
     */
    public String getLoc_sts() {
        return loc_sts;
    }
    /**
     * @param loc_sts the loc_sts to set
     */
    public void setLoc_sts(String loc_sts) {
        this.loc_sts = loc_sts;
    }
    /**
     * @return the sheet_no
     */
    public String getSheet_no() {
        return sheet_no;
    }
    /**
     * @param sheet_no the sheet_no to set
     */
    public void setSheet_no(String sheet_no) {
        this.sheet_no = sheet_no;
    }
    /**
     * @return the crn_no
     */
    public int getCrn_no() {
        return crn_no;
    }
    /**
     * @param crn_no the crn_no to set
     */
    public void setCrn_no(int crn_no) {
        this.crn_no = crn_no;
    }
    /**
     * @return the row1
     */
    public int getRow1() {
        return row1;
    }
    /**
     * @param row1 the row1 to set
     */
    public void setRow1(int row1) {
        this.row1 = row1;
    }
    /**
     * @return the bay1
     */
    public int getBay1() {
        return bay1;
    }
    /**
     * @param bay1 the bay1 to set
     */
    public void setBay1(int bay1) {
        this.bay1 = bay1;
    }
    /**
     * @return the lev1
     */
    public int getLev1() {
        return lev1;
    }
    /**
     * @param lev1 the lev1 to set
     */
    public void setLev1(int lev1) {
        this.lev1 = lev1;
    }
    /**
     * @return the full_plt
     */
    public String getFull_plt() {
        return full_plt;
    }
    /**
     * @param full_plt the full_plt to set
     */
    public void setFull_plt(String full_plt) {
        this.full_plt = full_plt;
    }
    /**
     * @return the barcode
     */
    public String getBarcode() {
        return barcode;
    }
    /**
     * @param barcode the barcode to set
     */
    public void setBarcode(String barcode) {
        this.barcode = barcode;
    }
    /**
     * @return the modi_user
     */
    public String getModi_user() {
        return modi_user;
    }
    /**
     * @param modi_user the modi_user to set
     */
    public void setModi_user(String modi_user) {
        this.modi_user = modi_user;
    }
    /**
     * @return the modi_time
     */
    public String getModi_time() {
        return modi_time;
    }
    /**
     * @param modi_time the modi_time to set
     */
    public void setModi_time(String modi_time) {
        this.modi_time = modi_time;
    }
    /**
     * @return the loc_sts_name
     */
    public String getLoc_sts_name() {
        return loc_sts_name;
    }
    /**
     * @param loc_sts_name the loc_sts_name to set
     */
    public void setLoc_sts_name(String loc_sts_name) {
        this.loc_sts_name = loc_sts_name;
    }
    /**
     * @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 String getLoc_sts_old() {
        return loc_sts_old;
    }
    public void setLoc_sts_old(String loc_sts_old) {
        this.loc_sts_old = loc_sts_old;
    }
    public String getRowName() {
        return rowName;
    }
    public void setRowName(String rowName) {
        this.rowName = rowName;
    }
    public String getLoc_type_desc() {
        return loc_type_desc;
    }
    public void setLoc_type_desc(String loc_type_desc) {
        this.loc_type_desc = loc_type_desc;
    }
    
}