自动化立体仓库 - 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
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_bd_customer_wms
 */
@TableName(value ="ncc_bd_customer_wms")
@Data
public class NccBdCustomerWms {
    /**
     * 
     */
    @TableId
    private String pkCustomer;
 
    /**
     * 
     */
    private String code;
 
    /**
     * 
     */
    private String name;
 
    /**
     * 
     */
    private String shortname;
 
    /**
     * 
     */
    private String taxpayerid;
 
    /**
     * 
     */
    private String khlx;
 
    /**
     * 
     */
    private String tel1;
 
    /**
     * 
     */
    private String legalbody;
 
    /**
     * 
     */
    private BigDecimal nlimitmny;
 
    /**
     * 
     */
    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;
        }
        NccBdCustomerWms other = (NccBdCustomerWms) that;
        return (this.getPkCustomer() == null ? other.getPkCustomer() == null : this.getPkCustomer().equals(other.getPkCustomer()))
            && (this.getCode() == null ? other.getCode() == null : this.getCode().equals(other.getCode()))
            && (this.getName() == null ? other.getName() == null : this.getName().equals(other.getName()))
            && (this.getShortname() == null ? other.getShortname() == null : this.getShortname().equals(other.getShortname()))
            && (this.getTaxpayerid() == null ? other.getTaxpayerid() == null : this.getTaxpayerid().equals(other.getTaxpayerid()))
            && (this.getKhlx() == null ? other.getKhlx() == null : this.getKhlx().equals(other.getKhlx()))
            && (this.getTel1() == null ? other.getTel1() == null : this.getTel1().equals(other.getTel1()))
            && (this.getLegalbody() == null ? other.getLegalbody() == null : this.getLegalbody().equals(other.getLegalbody()))
            && (this.getNlimitmny() == null ? other.getNlimitmny() == null : this.getNlimitmny().equals(other.getNlimitmny()))
            && (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 + ((getPkCustomer() == null) ? 0 : getPkCustomer().hashCode());
        result = prime * result + ((getCode() == null) ? 0 : getCode().hashCode());
        result = prime * result + ((getName() == null) ? 0 : getName().hashCode());
        result = prime * result + ((getShortname() == null) ? 0 : getShortname().hashCode());
        result = prime * result + ((getTaxpayerid() == null) ? 0 : getTaxpayerid().hashCode());
        result = prime * result + ((getKhlx() == null) ? 0 : getKhlx().hashCode());
        result = prime * result + ((getTel1() == null) ? 0 : getTel1().hashCode());
        result = prime * result + ((getLegalbody() == null) ? 0 : getLegalbody().hashCode());
        result = prime * result + ((getNlimitmny() == null) ? 0 : getNlimitmny().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(", pkCustomer=").append(pkCustomer);
        sb.append(", code=").append(code);
        sb.append(", name=").append(name);
        sb.append(", shortname=").append(shortname);
        sb.append(", taxpayerid=").append(taxpayerid);
        sb.append(", khlx=").append(khlx);
        sb.append(", tel1=").append(tel1);
        sb.append(", legalbody=").append(legalbody);
        sb.append(", nlimitmny=").append(nlimitmny);
        sb.append(", wmsFlag=").append(wmsFlag);
        sb.append("]");
        return sb.toString();
    }
}