王佳豪
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
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
package com.slcf.pojo;
 
/**
 * 库存调整实体类
 * @author admin
 * @date 2018年11月15日
 */
public class AdjDetailBean {
    private Long adj_id; 
    private String loc_no;      //库位号
    private String mat_no;      //物料编码
    private String mat_name;      //物料编码
    private int s_ctns;          //箱数
    private int s_qty;           //数量
    private double s_wt;            //重量
    private int adj_ctns;          //箱数
    private int adj_qty;           //数量
    private double adj_wt;            //重量
    private int ctns;          //箱数
    private int qty;           //数量
    private double wt;            //重量
    private String memo;        //备注
    private String modi_user;
    private String modi_time;
    private int pageNumber;
    private int pageSize;
    private String begin_date; //查询开始日期
    private String end_date;   //查询截止日期
    
    public Long getAdj_id() {
        return adj_id;
    }
    public void setAdj_id(Long adj_id) {
        this.adj_id = adj_id;
    }
    /**
     * @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 mat_no
     */
    public String getMat_no() {
        return mat_no;
    }
    /**
     * @param mat_no the mat_no to set
     */
    public void setMat_no(String mat_no) {
        this.mat_no = mat_no;
    }
    public String getMat_name() {
        return mat_name;
    }
    public void setMat_name(String mat_name) {
        this.mat_name = mat_name;
    }
    
    public int getS_ctns() {
        return s_ctns;
    }
    public void setS_ctns(int s_ctns) {
        this.s_ctns = s_ctns;
    }
    public int getS_qty() {
        return s_qty;
    }
    public void setS_qty(int s_qty) {
        this.s_qty = s_qty;
    }
    /**
     * @return the s_wt
     */
    public double getS_wt() {
        return s_wt;
    }
    /**
     * @param s_wt the s_wt to set
     */
    public void setS_wt(double s_wt) {
        this.s_wt = s_wt;
    }
    
    public int getAdj_ctns() {
        return adj_ctns;
    }
    public void setAdj_ctns(int adj_ctns) {
        this.adj_ctns = adj_ctns;
    }
    public int getAdj_qty() {
        return adj_qty;
    }
    public void setAdj_qty(int adj_qty) {
        this.adj_qty = adj_qty;
    }
    /**
     * @return the adj_wt
     */
    public double getAdj_wt() {
        return adj_wt;
    }
    /**
     * @param adj_wt the adj_wt to set
     */
    public void setAdj_wt(double adj_wt) {
        this.adj_wt = adj_wt;
    }
    public int getCtns() {
        return ctns;
    }
    public void setCtns(int ctns) {
        this.ctns = ctns;
    }
    public int getQty() {
        return qty;
    }
    public void setQty(int qty) {
        this.qty = qty;
    }
    /**
     * @return the wt
     */
    public double getWt() {
        return wt;
    }
    /**
     * @param wt the wt to set
     */
    public void setWt(double wt) {
        this.wt = wt;
    }
    /**
     * @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;
    }
    public int getPageNumber() {
        return pageNumber;
    }
    public void setPageNumber(int pageNumber) {
        this.pageNumber = pageNumber;
    }
    public int getPageSize() {
        return pageSize;
    }
    public void setPageSize(int pageSize) {
        this.pageSize = pageSize;
    }
    public String getBegin_date() {
        return begin_date;
    }
    public void setBegin_date(String begin_date) {
        this.begin_date = begin_date;
    }
    public String getEnd_date() {
        return end_date;
    }
    public void setEnd_date(String end_date) {
        this.end_date = end_date;
    }
}