#
18516761980
2022-07-28 65fa066e222f6472badf7323c3b301417b674fdb
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
package com.slcf.pojo;
 
/**
 * 库位排号实体类
 * @author admin
 * @date 2018年11月7日
 */
public class RowNoBean {
    private Long whs_type;    //仓库别
 
    private String wrk_mk;    //当前工作号
    
    private int current_row;    //当前排
    
    private int s_row;    //起始排
    
    private int e_row;    //终止排
    
    private int crn_qty;    //堆垛机数量
    
    private String memo;  //备注
 
    private String modi_user;
    
    private String modi_time;
    
    private Long limint_loc;
 
    /**
     * @return the whs_type
     */
    public Long getWhs_type() {
        return whs_type;
    }
 
    /**
     * @param whs_type the whs_type to set
     */
    public void setWhs_type(Long whs_type) {
        this.whs_type = whs_type;
    }
 
    /**
     * @return the wrk_mk
     */
    public String getWrk_mk() {
        return wrk_mk;
    }
 
    /**
     * @param wrk_mk the wrk_mk to set
     */
    public void setWrk_mk(String wrk_mk) {
        this.wrk_mk = wrk_mk;
    }
 
    public int getCurrent_row() {
        return current_row;
    }
 
    public void setCurrent_row(int current_row) {
        this.current_row = current_row;
    }
 
    public int getS_row() {
        return s_row;
    }
 
    public void setS_row(int s_row) {
        this.s_row = s_row;
    }
 
    public int getE_row() {
        return e_row;
    }
 
    public void setE_row(int e_row) {
        this.e_row = e_row;
    }
 
    public int getCrn_qty() {
        return crn_qty;
    }
 
    public void setCrn_qty(int crn_qty) {
        this.crn_qty = crn_qty;
    }
 
    /**
     * @return the memo
     */
    public String getMemo() {
        return memo;
    }
 
    /**
     * @param memo the memo to set
     */
    public void setMemo(String memo) {
        this.memo = memo;
    }
 
    /**
     * @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 limint_loc
     */
    public Long getLimint_loc() {
        return limint_loc;
    }
 
    /**
     * @param limint_loc the limint_loc to set
     */
    public void setLimint_loc(Long limint_loc) {
        this.limint_loc = limint_loc;
    }
    
}