自动化立体仓库 - WMS系统
zhang
2025-05-21 ee2e593c5736c27dad7d93f9fca98290f578b5da
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
package com.zy.nc.entity;
 
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.annotations.TableName;
import java.math.BigDecimal;
import lombok.Data;
 
/**
 * 
 * @TableName ncc_sale_dbdd_wms
 */
@TableName(value ="ncc_sale_dbdd_wms")
@Data
public class NccSaleDbddWms {
    /**
     * 
     */
    @TableId
    private String cbillid;
 
    /**
     * 
     */
    private String vbillcode;
 
    /**
     * 
     */
    private String dbilldate;
 
    /**
     * 
     */
    private String taudittime;
 
    /**
     * 
     */
    private String drkczzbm;
 
    /**
     * 
     */
    private String drkczzmc;
 
    /**
     * 
     */
    private String dckczzbm;
 
    /**
     * 
     */
    private String dckczzmc;
 
    /**
     * 
     */
    private String dcbmbm;
 
    /**
     * 
     */
    private String dcbmmc;
 
    /**
     * 
     */
    private String drbmbm;
 
    /**
     * 
     */
    private String drbmmc;
 
    /**
     * 
     */
    private String drckbm;
 
    /**
     * 
     */
    private String drckmc;
 
    /**
     * 
     */
    private String dcckbm;
 
    /**
     * 
     */
    private String dcckmc;
 
    /**
     * 
     */
    private String zdw;
 
    /**
     * 
     */
    private BigDecimal zsl;
 
    /**
     * 
     */
    private String fdw;
 
    /**
     * 
     */
    private BigDecimal fsl;
 
    /**
     * 
     */
    private BigDecimal yfwfzsl;
 
    /**
     * 
     */
    private Long fstatusflag;
 
    /**
     * 
     */
    private Long frowstatuflag;
 
    /**
     * 
     */
    private String boutendflag;
 
    /**
     * 
     */
    private String bsendendflag;
 
    /**
     * 
     */
    private String blatestflag;
 
    /**
     * 
     */
    private String vnote;
 
    /**
     * 
     */
    private Long fioonwayownerflag;
 
    /**
     * 
     */
    private Long fotonwayownerflag;
 
    /**
     * 
     */
    private String conwayownerorgid;
 
    /**
     * 
     */
    private String biosettleendflag;
 
    /**
     * 
     */
    private BigDecimal noutnum;
 
    /**
     * 
     */
    private BigDecimal ninnum;
 
    /**
     * 
     */
    private String ts;
 
    /**
     * 
     */
    private Integer dr;
 
    /**
     * 
     */
    private String wmsMemo;
 
    /**
     * 
     */
    private Integer wmsFlag;
 
    /**
     * 
     */
    private String wlbm;
 
    /**
     * 
     */
    private String vbatchcode;
 
    @Override
    public boolean equals(Object that) {
        if (this == that) {
            return true;
        }
        if (that == null) {
            return false;
        }
        if (getClass() != that.getClass()) {
            return false;
        }
        NccSaleDbddWms other = (NccSaleDbddWms) that;
        return (this.getCbillid() == null ? other.getCbillid() == null : this.getCbillid().equals(other.getCbillid()))
            && (this.getVbillcode() == null ? other.getVbillcode() == null : this.getVbillcode().equals(other.getVbillcode()))
            && (this.getDbilldate() == null ? other.getDbilldate() == null : this.getDbilldate().equals(other.getDbilldate()))
            && (this.getTaudittime() == null ? other.getTaudittime() == null : this.getTaudittime().equals(other.getTaudittime()))
            && (this.getDrkczzbm() == null ? other.getDrkczzbm() == null : this.getDrkczzbm().equals(other.getDrkczzbm()))
            && (this.getDrkczzmc() == null ? other.getDrkczzmc() == null : this.getDrkczzmc().equals(other.getDrkczzmc()))
            && (this.getDckczzbm() == null ? other.getDckczzbm() == null : this.getDckczzbm().equals(other.getDckczzbm()))
            && (this.getDckczzmc() == null ? other.getDckczzmc() == null : this.getDckczzmc().equals(other.getDckczzmc()))
            && (this.getDcbmbm() == null ? other.getDcbmbm() == null : this.getDcbmbm().equals(other.getDcbmbm()))
            && (this.getDcbmmc() == null ? other.getDcbmmc() == null : this.getDcbmmc().equals(other.getDcbmmc()))
            && (this.getDrbmbm() == null ? other.getDrbmbm() == null : this.getDrbmbm().equals(other.getDrbmbm()))
            && (this.getDrbmmc() == null ? other.getDrbmmc() == null : this.getDrbmmc().equals(other.getDrbmmc()))
            && (this.getDrckbm() == null ? other.getDrckbm() == null : this.getDrckbm().equals(other.getDrckbm()))
            && (this.getDrckmc() == null ? other.getDrckmc() == null : this.getDrckmc().equals(other.getDrckmc()))
            && (this.getDcckbm() == null ? other.getDcckbm() == null : this.getDcckbm().equals(other.getDcckbm()))
            && (this.getDcckmc() == null ? other.getDcckmc() == null : this.getDcckmc().equals(other.getDcckmc()))
            && (this.getZdw() == null ? other.getZdw() == null : this.getZdw().equals(other.getZdw()))
            && (this.getZsl() == null ? other.getZsl() == null : this.getZsl().equals(other.getZsl()))
            && (this.getFdw() == null ? other.getFdw() == null : this.getFdw().equals(other.getFdw()))
            && (this.getFsl() == null ? other.getFsl() == null : this.getFsl().equals(other.getFsl()))
            && (this.getYfwfzsl() == null ? other.getYfwfzsl() == null : this.getYfwfzsl().equals(other.getYfwfzsl()))
            && (this.getFstatusflag() == null ? other.getFstatusflag() == null : this.getFstatusflag().equals(other.getFstatusflag()))
            && (this.getFrowstatuflag() == null ? other.getFrowstatuflag() == null : this.getFrowstatuflag().equals(other.getFrowstatuflag()))
            && (this.getBoutendflag() == null ? other.getBoutendflag() == null : this.getBoutendflag().equals(other.getBoutendflag()))
            && (this.getBsendendflag() == null ? other.getBsendendflag() == null : this.getBsendendflag().equals(other.getBsendendflag()))
            && (this.getBlatestflag() == null ? other.getBlatestflag() == null : this.getBlatestflag().equals(other.getBlatestflag()))
            && (this.getVnote() == null ? other.getVnote() == null : this.getVnote().equals(other.getVnote()))
            && (this.getFioonwayownerflag() == null ? other.getFioonwayownerflag() == null : this.getFioonwayownerflag().equals(other.getFioonwayownerflag()))
            && (this.getFotonwayownerflag() == null ? other.getFotonwayownerflag() == null : this.getFotonwayownerflag().equals(other.getFotonwayownerflag()))
            && (this.getConwayownerorgid() == null ? other.getConwayownerorgid() == null : this.getConwayownerorgid().equals(other.getConwayownerorgid()))
            && (this.getBiosettleendflag() == null ? other.getBiosettleendflag() == null : this.getBiosettleendflag().equals(other.getBiosettleendflag()))
            && (this.getNoutnum() == null ? other.getNoutnum() == null : this.getNoutnum().equals(other.getNoutnum()))
            && (this.getNinnum() == null ? other.getNinnum() == null : this.getNinnum().equals(other.getNinnum()))
            && (this.getTs() == null ? other.getTs() == null : this.getTs().equals(other.getTs()))
            && (this.getDr() == null ? other.getDr() == null : this.getDr().equals(other.getDr()))
            && (this.getWmsMemo() == null ? other.getWmsMemo() == null : this.getWmsMemo().equals(other.getWmsMemo()))
            && (this.getWmsFlag() == null ? other.getWmsFlag() == null : this.getWmsFlag().equals(other.getWmsFlag()))
            && (this.getWlbm() == null ? other.getWlbm() == null : this.getWlbm().equals(other.getWlbm()))
            && (this.getVbatchcode() == null ? other.getVbatchcode() == null : this.getVbatchcode().equals(other.getVbatchcode()));
    }
 
    @Override
    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime * result + ((getCbillid() == null) ? 0 : getCbillid().hashCode());
        result = prime * result + ((getVbillcode() == null) ? 0 : getVbillcode().hashCode());
        result = prime * result + ((getDbilldate() == null) ? 0 : getDbilldate().hashCode());
        result = prime * result + ((getTaudittime() == null) ? 0 : getTaudittime().hashCode());
        result = prime * result + ((getDrkczzbm() == null) ? 0 : getDrkczzbm().hashCode());
        result = prime * result + ((getDrkczzmc() == null) ? 0 : getDrkczzmc().hashCode());
        result = prime * result + ((getDckczzbm() == null) ? 0 : getDckczzbm().hashCode());
        result = prime * result + ((getDckczzmc() == null) ? 0 : getDckczzmc().hashCode());
        result = prime * result + ((getDcbmbm() == null) ? 0 : getDcbmbm().hashCode());
        result = prime * result + ((getDcbmmc() == null) ? 0 : getDcbmmc().hashCode());
        result = prime * result + ((getDrbmbm() == null) ? 0 : getDrbmbm().hashCode());
        result = prime * result + ((getDrbmmc() == null) ? 0 : getDrbmmc().hashCode());
        result = prime * result + ((getDrckbm() == null) ? 0 : getDrckbm().hashCode());
        result = prime * result + ((getDrckmc() == null) ? 0 : getDrckmc().hashCode());
        result = prime * result + ((getDcckbm() == null) ? 0 : getDcckbm().hashCode());
        result = prime * result + ((getDcckmc() == null) ? 0 : getDcckmc().hashCode());
        result = prime * result + ((getZdw() == null) ? 0 : getZdw().hashCode());
        result = prime * result + ((getZsl() == null) ? 0 : getZsl().hashCode());
        result = prime * result + ((getFdw() == null) ? 0 : getFdw().hashCode());
        result = prime * result + ((getFsl() == null) ? 0 : getFsl().hashCode());
        result = prime * result + ((getYfwfzsl() == null) ? 0 : getYfwfzsl().hashCode());
        result = prime * result + ((getFstatusflag() == null) ? 0 : getFstatusflag().hashCode());
        result = prime * result + ((getFrowstatuflag() == null) ? 0 : getFrowstatuflag().hashCode());
        result = prime * result + ((getBoutendflag() == null) ? 0 : getBoutendflag().hashCode());
        result = prime * result + ((getBsendendflag() == null) ? 0 : getBsendendflag().hashCode());
        result = prime * result + ((getBlatestflag() == null) ? 0 : getBlatestflag().hashCode());
        result = prime * result + ((getVnote() == null) ? 0 : getVnote().hashCode());
        result = prime * result + ((getFioonwayownerflag() == null) ? 0 : getFioonwayownerflag().hashCode());
        result = prime * result + ((getFotonwayownerflag() == null) ? 0 : getFotonwayownerflag().hashCode());
        result = prime * result + ((getConwayownerorgid() == null) ? 0 : getConwayownerorgid().hashCode());
        result = prime * result + ((getBiosettleendflag() == null) ? 0 : getBiosettleendflag().hashCode());
        result = prime * result + ((getNoutnum() == null) ? 0 : getNoutnum().hashCode());
        result = prime * result + ((getNinnum() == null) ? 0 : getNinnum().hashCode());
        result = prime * result + ((getTs() == null) ? 0 : getTs().hashCode());
        result = prime * result + ((getDr() == null) ? 0 : getDr().hashCode());
        result = prime * result + ((getWmsMemo() == null) ? 0 : getWmsMemo().hashCode());
        result = prime * result + ((getWmsFlag() == null) ? 0 : getWmsFlag().hashCode());
        result = prime * result + ((getWlbm() == null) ? 0 : getWlbm().hashCode());
        result = prime * result + ((getVbatchcode() == null) ? 0 : getVbatchcode().hashCode());
        return result;
    }
 
    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append(getClass().getSimpleName());
        sb.append(" [");
        sb.append("Hash = ").append(hashCode());
        sb.append(", cbillid=").append(cbillid);
        sb.append(", vbillcode=").append(vbillcode);
        sb.append(", dbilldate=").append(dbilldate);
        sb.append(", taudittime=").append(taudittime);
        sb.append(", drkczzbm=").append(drkczzbm);
        sb.append(", drkczzmc=").append(drkczzmc);
        sb.append(", dckczzbm=").append(dckczzbm);
        sb.append(", dckczzmc=").append(dckczzmc);
        sb.append(", dcbmbm=").append(dcbmbm);
        sb.append(", dcbmmc=").append(dcbmmc);
        sb.append(", drbmbm=").append(drbmbm);
        sb.append(", drbmmc=").append(drbmmc);
        sb.append(", drckbm=").append(drckbm);
        sb.append(", drckmc=").append(drckmc);
        sb.append(", dcckbm=").append(dcckbm);
        sb.append(", dcckmc=").append(dcckmc);
        sb.append(", zdw=").append(zdw);
        sb.append(", zsl=").append(zsl);
        sb.append(", fdw=").append(fdw);
        sb.append(", fsl=").append(fsl);
        sb.append(", yfwfzsl=").append(yfwfzsl);
        sb.append(", fstatusflag=").append(fstatusflag);
        sb.append(", frowstatuflag=").append(frowstatuflag);
        sb.append(", boutendflag=").append(boutendflag);
        sb.append(", bsendendflag=").append(bsendendflag);
        sb.append(", blatestflag=").append(blatestflag);
        sb.append(", vnote=").append(vnote);
        sb.append(", fioonwayownerflag=").append(fioonwayownerflag);
        sb.append(", fotonwayownerflag=").append(fotonwayownerflag);
        sb.append(", conwayownerorgid=").append(conwayownerorgid);
        sb.append(", biosettleendflag=").append(biosettleendflag);
        sb.append(", noutnum=").append(noutnum);
        sb.append(", ninnum=").append(ninnum);
        sb.append(", ts=").append(ts);
        sb.append(", dr=").append(dr);
        sb.append(", wmsMemo=").append(wmsMemo);
        sb.append(", wmsFlag=").append(wmsFlag);
        sb.append(", wlbm=").append(wlbm);
        sb.append(", vbatchcode=").append(vbatchcode);
        sb.append("]");
        return sb.toString();
    }
}