cy
2023-11-03 47ea867f43fee950e5770d9208a245379853a330
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
223
224
225
226
227
package com.consum.base.pojo;
 
import com.walker.web.param.ParamRequest;
 
public class LWhFormInventoryParam extends ParamRequest {
    private Long id;
    /**
     * 盘点单号
     */
    private String businessFormCode;
    /**
     * 盘点单名
     */
    private String businessFormName;
    /**
     * 仓库编号
     */
    private Long warehouseId;
    /**
     * 操作人
     */
    private Long operatorId;
    /**
     * 监盘人
     */
    private Integer operatorId2;
    /**
     * 备注
     */
    private String beiz1;
    /**
     * 盘点时间 开始
     */
    private Long inventoryDateStart;
    /**
     * 盘点时间 结束
     */
    private Long inventoryDateEnd;
    /**
     * 机构id
     */
    private Long agencyId;
    /**
     * 物品名称
     */
    private String goodsTemplateName;
    /**
     * 规格型号id
     */
    private Long baseGoodsModelsId;
    /**
     * 类型(出入库类型) 2=盘盈;3=盘亏
     */
    private Integer inventoryResult;
    /**
     * 出入库单号
     */
    private Long warehouseFormCode;
    /**
     * 盘点人
     */
    private String operatorName;
    /**
     * 时间(盘点结束时间) 开始
     */
    private Long stopTimeStart;
    /**
     * 时间(盘点结束时间) 结束
     */
    private Long stopTimeEnd;
 
    private Integer pageSize = 10;
    private Integer pageNum = 1;
 
    public Integer getPageSize() {
        return pageSize;
    }
 
    public void setPageSize(Integer pageSize) {
        this.pageSize = pageSize;
    }
 
    public Integer getPageNum() {
        return pageNum;
    }
 
    public void setPageNum(Integer pageNum) {
        this.pageNum = pageNum;
    }
 
 
    public String getOperatorName() {
        return operatorName;
    }
 
    public void setOperatorName(String operatorName) {
        this.operatorName = operatorName;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getBusinessFormName() {
        return businessFormName;
    }
 
    public void setBusinessFormName(String businessFormName) {
        this.businessFormName = businessFormName;
    }
 
    public Long getWarehouseId() {
        return warehouseId;
    }
 
    public void setWarehouseId(Long warehouseId) {
        this.warehouseId = warehouseId;
    }
 
    public Long getOperatorId() {
        return operatorId;
    }
 
    public void setOperatorId(Long operatorId) {
        this.operatorId = operatorId;
    }
 
    public Integer getOperatorId2() {
        return operatorId2;
    }
 
    public void setOperatorId2(Integer operatorId2) {
        this.operatorId2 = operatorId2;
    }
 
    public String getBeiz1() {
        return beiz1;
    }
 
    public void setBeiz1(String beiz1) {
        this.beiz1 = beiz1;
    }
 
    public Long getInventoryDateStart() {
        return inventoryDateStart;
    }
 
    public void setInventoryDateStart(Long inventoryDateStart) {
        this.inventoryDateStart = inventoryDateStart;
    }
 
    public Long getInventoryDateEnd() {
        return inventoryDateEnd;
    }
 
    public void setInventoryDateEnd(Long inventoryDateEnd) {
        this.inventoryDateEnd = inventoryDateEnd;
    }
 
    public Long getAgencyId() {
        return agencyId;
    }
 
    public void setAgencyId(Long agencyId) {
        this.agencyId = agencyId;
    }
 
    public String getGoodsTemplateName() {
        return goodsTemplateName;
    }
 
    public void setGoodsTemplateName(String goodsTemplateName) {
        this.goodsTemplateName = goodsTemplateName;
    }
 
    public Long getBaseGoodsModelsId() {
        return baseGoodsModelsId;
    }
 
    public void setBaseGoodsModelsId(Long baseGoodsModelsId) {
        this.baseGoodsModelsId = baseGoodsModelsId;
    }
 
    public Integer getInventoryResult() {
        return inventoryResult;
    }
 
    public void setInventoryResult(Integer inventoryResult) {
        this.inventoryResult = inventoryResult;
    }
 
    public void setBusinessFormCode(String businessFormCode) {
        this.businessFormCode = businessFormCode;
    }
 
    public Long getStopTimeStart() {
        return stopTimeStart;
    }
 
    public void setStopTimeStart(Long stopTimeStart) {
        this.stopTimeStart = stopTimeStart;
    }
 
    public Long getStopTimeEnd() {
        return stopTimeEnd;
    }
 
    public void setStopTimeEnd(Long stopTimeEnd) {
        this.stopTimeEnd = stopTimeEnd;
    }
 
    public String getBusinessFormCode() {
        return businessFormCode;
    }
 
    public Long getWarehouseFormCode() {
        return warehouseFormCode;
    }
 
    public void setWarehouseFormCode(Long warehouseFormCode) {
        this.warehouseFormCode = warehouseFormCode;
    }
}