自动化立体仓库 - WMS系统
ZY
2025-05-08 ae435b36b998f81fbbecb028d654aec814ee3257
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
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_ry_wms
 */
@TableName(value ="ncc_jc_ry_wms")
@Data
public class NccJcRyWms {
    /**
     * 
     */
    private String pkPsndoc;
 
    /**
     * 
     */
    private Long qyzt;
 
    /**
     * 
     */
    private String rybm;
 
    /**
     * 
     */
    private String rymc;
 
    /**
     * 
     */
    private String pkOrg;
 
    /**
     * 
     */
    private String sszzbm;
 
    /**
     * 
     */
    private String sszzmc;
 
    /**
     * 
     */
    private String pkDept;
 
    /**
     * 
     */
    private String ssbmbm;
 
    /**
     * 
     */
    private String ssbmmc;
 
    /**
     * 
     */
    private String sssyb;
 
    /**
     * 
     */
    private Integer wmsFlag;
 
    @Override
    public boolean equals(Object that) {
        if (this == that) {
            return true;
        }
        if (that == null) {
            return false;
        }
        if (getClass() != that.getClass()) {
            return false;
        }
        NccJcRyWms other = (NccJcRyWms) that;
        return (this.getPkPsndoc() == null ? other.getPkPsndoc() == null : this.getPkPsndoc().equals(other.getPkPsndoc()))
            && (this.getQyzt() == null ? other.getQyzt() == null : this.getQyzt().equals(other.getQyzt()))
            && (this.getRybm() == null ? other.getRybm() == null : this.getRybm().equals(other.getRybm()))
            && (this.getRymc() == null ? other.getRymc() == null : this.getRymc().equals(other.getRymc()))
            && (this.getPkOrg() == null ? other.getPkOrg() == null : this.getPkOrg().equals(other.getPkOrg()))
            && (this.getSszzbm() == null ? other.getSszzbm() == null : this.getSszzbm().equals(other.getSszzbm()))
            && (this.getSszzmc() == null ? other.getSszzmc() == null : this.getSszzmc().equals(other.getSszzmc()))
            && (this.getPkDept() == null ? other.getPkDept() == null : this.getPkDept().equals(other.getPkDept()))
            && (this.getSsbmbm() == null ? other.getSsbmbm() == null : this.getSsbmbm().equals(other.getSsbmbm()))
            && (this.getSsbmmc() == null ? other.getSsbmmc() == null : this.getSsbmmc().equals(other.getSsbmmc()))
            && (this.getSssyb() == null ? other.getSssyb() == null : this.getSssyb().equals(other.getSssyb()))
            && (this.getWmsFlag() == null ? other.getWmsFlag() == null : this.getWmsFlag().equals(other.getWmsFlag()));
    }
 
    @Override
    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime * result + ((getPkPsndoc() == null) ? 0 : getPkPsndoc().hashCode());
        result = prime * result + ((getQyzt() == null) ? 0 : getQyzt().hashCode());
        result = prime * result + ((getRybm() == null) ? 0 : getRybm().hashCode());
        result = prime * result + ((getRymc() == null) ? 0 : getRymc().hashCode());
        result = prime * result + ((getPkOrg() == null) ? 0 : getPkOrg().hashCode());
        result = prime * result + ((getSszzbm() == null) ? 0 : getSszzbm().hashCode());
        result = prime * result + ((getSszzmc() == null) ? 0 : getSszzmc().hashCode());
        result = prime * result + ((getPkDept() == null) ? 0 : getPkDept().hashCode());
        result = prime * result + ((getSsbmbm() == null) ? 0 : getSsbmbm().hashCode());
        result = prime * result + ((getSsbmmc() == null) ? 0 : getSsbmmc().hashCode());
        result = prime * result + ((getSssyb() == null) ? 0 : getSssyb().hashCode());
        result = prime * result + ((getWmsFlag() == null) ? 0 : getWmsFlag().hashCode());
        return result;
    }
 
    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append(getClass().getSimpleName());
        sb.append(" [");
        sb.append("Hash = ").append(hashCode());
        sb.append(", pkPsndoc=").append(pkPsndoc);
        sb.append(", qyzt=").append(qyzt);
        sb.append(", rybm=").append(rybm);
        sb.append(", rymc=").append(rymc);
        sb.append(", pkOrg=").append(pkOrg);
        sb.append(", sszzbm=").append(sszzbm);
        sb.append(", sszzmc=").append(sszzmc);
        sb.append(", pkDept=").append(pkDept);
        sb.append(", ssbmbm=").append(ssbmbm);
        sb.append(", ssbmmc=").append(ssbmmc);
        sb.append(", sssyb=").append(sssyb);
        sb.append(", wmsFlag=").append(wmsFlag);
        sb.append("]");
        return sb.toString();
    }
}