1
zj
2024-09-02 d78a33a6707fdd67069e6b1ff09493f3dc83e863
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
 
package com.nq.vo.agent;
 
 
public class AgentSecondInfoVO {
 
    private Integer id;
 
    private String agentName;
 
    private String agentRealName;
 
    private String agentPhone;
 
    private String agentCode;
 
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public void setAgentName(String agentName) {
        this.agentName = agentName;
    }
 
    public void setAgentRealName(String agentRealName) {
        this.agentRealName = agentRealName;
    }
 
    public void setAgentPhone(String agentPhone) {
        this.agentPhone = agentPhone;
    }
 
    public void setAgentCode(String agentCode) {
        this.agentCode = agentCode;
    }
 
    public boolean equals(Object o) {
        if (o == this) return true;
        if (!(o instanceof AgentSecondInfoVO)) return false;
        AgentSecondInfoVO other = (AgentSecondInfoVO) o;
        if (!other.canEqual(this)) return false;
        Object this$id = getId(), other$id = other.getId();
        if ((this$id == null) ? (other$id != null) : !this$id.equals(other$id)) return false;
        Object this$agentName = getAgentName(), other$agentName = other.getAgentName();
        if ((this$agentName == null) ? (other$agentName != null) : !this$agentName.equals(other$agentName))
            return false;
        Object this$agentRealName = getAgentRealName(), other$agentRealName = other.getAgentRealName();
        if ((this$agentRealName == null) ? (other$agentRealName != null) : !this$agentRealName.equals(other$agentRealName))
            return false;
        Object this$agentPhone = getAgentPhone(), other$agentPhone = other.getAgentPhone();
        if ((this$agentPhone == null) ? (other$agentPhone != null) : !this$agentPhone.equals(other$agentPhone))
            return false;
        Object this$agentCode = getAgentCode(), other$agentCode = other.getAgentCode();
        return !((this$agentCode == null) ? (other$agentCode != null) : !this$agentCode.equals(other$agentCode));
    }
 
    protected boolean canEqual(Object other) {
        return other instanceof AgentSecondInfoVO;
    }
 
    public int hashCode() {
        int PRIME = 59;
        int result = 1;
        Object $id = getId();
        result = result * 59 + (($id == null) ? 43 : $id.hashCode());
        Object $agentName = getAgentName();
        result = result * 59 + (($agentName == null) ? 43 : $agentName.hashCode());
        Object $agentRealName = getAgentRealName();
        result = result * 59 + (($agentRealName == null) ? 43 : $agentRealName.hashCode());
        Object $agentPhone = getAgentPhone();
        result = result * 59 + (($agentPhone == null) ? 43 : $agentPhone.hashCode());
        Object $agentCode = getAgentCode();
        return result * 59 + (($agentCode == null) ? 43 : $agentCode.hashCode());
    }
 
    public String toString() {
        return "AgentSecondInfoVO(id=" + getId() + ", agentName=" + getAgentName() + ", agentRealName=" + getAgentRealName() + ", agentPhone=" + getAgentPhone() + ", agentCode=" + getAgentCode() + ")";
    }
 
 
    public Integer getId() {
        return this.id;
    }
 
 
    public String getAgentName() {
        return this.agentName;
    }
 
 
    public String getAgentRealName() {
        return this.agentRealName;
    }
 
 
    public String getAgentPhone() {
        return this.agentPhone;
    }
 
 
    public String getAgentCode() {
        return this.agentCode;
    }
 
}