自动化立体仓库 - 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
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_wlfl_wms
 */
@TableName(value ="ncc_jc_wlfl_wms")
@Data
public class NccJcWlflWms {
    /**
     * 
     */
    @TableId
    private String pkMarbasclass;
 
    /**
     * 
     */
    private String code;
 
    /**
     * 
     */
    private String name;
 
    /**
     * 
     */
    private String sjflbm;
 
    /**
     * 
     */
    private String sjflmc;
 
    /**
     * 
     */
    private String wljbfl;
 
    /**
     * 
     */
    private String code1;
 
    @Override
    public boolean equals(Object that) {
        if (this == that) {
            return true;
        }
        if (that == null) {
            return false;
        }
        if (getClass() != that.getClass()) {
            return false;
        }
        NccJcWlflWms other = (NccJcWlflWms) that;
        return (this.getPkMarbasclass() == null ? other.getPkMarbasclass() == null : this.getPkMarbasclass().equals(other.getPkMarbasclass()))
            && (this.getCode() == null ? other.getCode() == null : this.getCode().equals(other.getCode()))
            && (this.getName() == null ? other.getName() == null : this.getName().equals(other.getName()))
            && (this.getSjflbm() == null ? other.getSjflbm() == null : this.getSjflbm().equals(other.getSjflbm()))
            && (this.getSjflmc() == null ? other.getSjflmc() == null : this.getSjflmc().equals(other.getSjflmc()))
            && (this.getWljbfl() == null ? other.getWljbfl() == null : this.getWljbfl().equals(other.getWljbfl()))
            && (this.getCode1() == null ? other.getCode1() == null : this.getCode1().equals(other.getCode1()));
    }
 
    @Override
    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime * result + ((getPkMarbasclass() == null) ? 0 : getPkMarbasclass().hashCode());
        result = prime * result + ((getCode() == null) ? 0 : getCode().hashCode());
        result = prime * result + ((getName() == null) ? 0 : getName().hashCode());
        result = prime * result + ((getSjflbm() == null) ? 0 : getSjflbm().hashCode());
        result = prime * result + ((getSjflmc() == null) ? 0 : getSjflmc().hashCode());
        result = prime * result + ((getWljbfl() == null) ? 0 : getWljbfl().hashCode());
        result = prime * result + ((getCode1() == null) ? 0 : getCode1().hashCode());
        return result;
    }
 
    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append(getClass().getSimpleName());
        sb.append(" [");
        sb.append("Hash = ").append(hashCode());
        sb.append(", pkMarbasclass=").append(pkMarbasclass);
        sb.append(", code=").append(code);
        sb.append(", name=").append(name);
        sb.append(", sjflbm=").append(sjflbm);
        sb.append(", sjflmc=").append(sjflmc);
        sb.append(", wljbfl=").append(wljbfl);
        sb.append(", code1=").append(code1);
        sb.append("]");
        return sb.toString();
    }
}