#
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
package com.slcf.bean;
 
/**
 * 库存调整查询传参bean
 * @author admin
 * @date 2018年11月15日
 */
public class AdjDetailCondition {
    private String loc_no;      //库位号
    private String mat_no;      //物料编码
    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 mat_name;      //物料名称
    private int pageNumber;
    private int pageSize;
    
    /**
     * @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 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;
    }
    public void setAdj_ctns(int adj_ctns) {
        this.adj_ctns = adj_ctns;
    }
    public void setAdj_qty(int adj_qty) {
        this.adj_qty = adj_qty;
    }
    public void setCtns(int ctns) {
        this.ctns = ctns;
    }
    public void setQty(int qty) {
        this.qty = 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;
    }
    /**
     * @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;
    }
    /**
     * @return the wt
     */
    public double getWt() {
        return wt;
    }
    /**
     * @param wt the wt to set
     */
    public void setWt(double wt) {
        this.wt = wt;
    }
    
    public int getAdj_ctns() {
        return adj_ctns;
    }
    public int getAdj_qty() {
        return adj_qty;
    }
    public int getCtns() {
        return ctns;
    }
    public int getQty() {
        return 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 mat_name
     */
    public String getMat_name() {
        return mat_name;
    }
    /**
     * @param mat_name the mat_name to set
     */
    public void setMat_name(String mat_name) {
        this.mat_name = mat_name;
    }
    /**
     * @return the pageNumber
     */
    public int getPageNumber() {
        return pageNumber;
    }
    /**
     * @param pageNumber the pageNumber to set
     */
    public void setPageNumber(int pageNumber) {
        this.pageNumber = pageNumber;
    }
    /**
     * @return the pageSize
     */
    public int getPageSize() {
        return pageSize;
    }
    /**
     * @param pageSize the pageSize to set
     */
    public void setPageSize(int pageSize) {
        this.pageSize = pageSize;
    }
}