自动化立体仓库 - WMS系统
1
zhang
2025-05-08 39d42cd68f79587f13e33bf9628926e7720c918b
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
package com.zy.nc.entity;
 
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.annotations.TableName;
import lombok.Data;
 
/**
 * 
 * @TableName ncc_jc_bm_wms
 */
@TableName(value ="ncc_jc_bm_wms")
@Data
public class NccJcBmWms {
    /**
     * 
     */
    private String pkDept;
 
    /**
     * 
     */
    private String bmbm;
 
    /**
     * 
     */
    private String bmmc;
 
    /**
     * 
     */
    private String bmjc;
 
    /**
     * 
     */
    private String sjbm;
 
    /**
     * 
     */
    private String ssywdy;
 
    /**
     * 
     */
    private String ssywdybm;
 
    /**
     * 
     */
    private String ssywdymc;
 
    /**
     * 
     */
    private String sssyb;
 
    /**
     * 
     */
    private Long qyzt;
 
    @Override
    public boolean equals(Object that) {
        if (this == that) {
            return true;
        }
        if (that == null) {
            return false;
        }
        if (getClass() != that.getClass()) {
            return false;
        }
        NccJcBmWms other = (NccJcBmWms) that;
        return (this.getPkDept() == null ? other.getPkDept() == null : this.getPkDept().equals(other.getPkDept()))
            && (this.getBmbm() == null ? other.getBmbm() == null : this.getBmbm().equals(other.getBmbm()))
            && (this.getBmmc() == null ? other.getBmmc() == null : this.getBmmc().equals(other.getBmmc()))
            && (this.getBmjc() == null ? other.getBmjc() == null : this.getBmjc().equals(other.getBmjc()))
            && (this.getSjbm() == null ? other.getSjbm() == null : this.getSjbm().equals(other.getSjbm()))
            && (this.getSsywdy() == null ? other.getSsywdy() == null : this.getSsywdy().equals(other.getSsywdy()))
            && (this.getSsywdybm() == null ? other.getSsywdybm() == null : this.getSsywdybm().equals(other.getSsywdybm()))
            && (this.getSsywdymc() == null ? other.getSsywdymc() == null : this.getSsywdymc().equals(other.getSsywdymc()))
            && (this.getSssyb() == null ? other.getSssyb() == null : this.getSssyb().equals(other.getSssyb()))
            && (this.getQyzt() == null ? other.getQyzt() == null : this.getQyzt().equals(other.getQyzt()));
    }
 
    @Override
    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime * result + ((getPkDept() == null) ? 0 : getPkDept().hashCode());
        result = prime * result + ((getBmbm() == null) ? 0 : getBmbm().hashCode());
        result = prime * result + ((getBmmc() == null) ? 0 : getBmmc().hashCode());
        result = prime * result + ((getBmjc() == null) ? 0 : getBmjc().hashCode());
        result = prime * result + ((getSjbm() == null) ? 0 : getSjbm().hashCode());
        result = prime * result + ((getSsywdy() == null) ? 0 : getSsywdy().hashCode());
        result = prime * result + ((getSsywdybm() == null) ? 0 : getSsywdybm().hashCode());
        result = prime * result + ((getSsywdymc() == null) ? 0 : getSsywdymc().hashCode());
        result = prime * result + ((getSssyb() == null) ? 0 : getSssyb().hashCode());
        result = prime * result + ((getQyzt() == null) ? 0 : getQyzt().hashCode());
        return result;
    }
 
    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append(getClass().getSimpleName());
        sb.append(" [");
        sb.append("Hash = ").append(hashCode());
        sb.append(", pkDept=").append(pkDept);
        sb.append(", bmbm=").append(bmbm);
        sb.append(", bmmc=").append(bmmc);
        sb.append(", bmjc=").append(bmjc);
        sb.append(", sjbm=").append(sjbm);
        sb.append(", ssywdy=").append(ssywdy);
        sb.append(", ssywdybm=").append(ssywdybm);
        sb.append(", ssywdymc=").append(ssywdymc);
        sb.append(", sssyb=").append(sssyb);
        sb.append(", qyzt=").append(qyzt);
        sb.append("]");
        return sb.toString();
    }
}