zj
2024-06-03 4afe73cb84c5a609662b8b4ee20693de9b86b9a3
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
package com.nq.vo.agent;
 
 
import java.math.BigDecimal;
import java.util.Date;
 
public class AgentInfoVO {
    private Integer id;
    private String agentName;
    private String agentRealName;
    private String agentPhone;
    private String agentCode;
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    private Date addTime;
    private Integer isLock;
    private Integer parentId;
    private String parentName;
    private String mUrl;
    private String pcUrl;
 
    /**
     * 总资金
     */
    private BigDecimal totalMoney;
 
    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 void setAddTime(Date addTime) {
        this.addTime = addTime;
    }
 
    public void setIsLock(Integer isLock) {
        this.isLock = isLock;
    }
 
    public void setParentId(Integer parentId) {
        this.parentId = parentId;
    }
 
    public void setParentName(String parentName) {
        this.parentName = parentName;
    }
 
    public void setMUrl(String mUrl) {
        this.mUrl = mUrl;
    }
 
    public void setPcUrl(String pcUrl) {
        this.pcUrl = pcUrl;
    }
 
    public boolean equals(Object o) {
        if (o == this) return true;
        if (!(o instanceof AgentInfoVO)) return false;
        AgentInfoVO other = (AgentInfoVO) 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();
        if ((this$agentCode == null) ? (other$agentCode != null) : !this$agentCode.equals(other$agentCode))
            return false;
        Object this$addTime = getAddTime(), other$addTime = other.getAddTime();
        if ((this$addTime == null) ? (other$addTime != null) : !this$addTime.equals(other$addTime)) return false;
        Object this$isLock = getIsLock(), other$isLock = other.getIsLock();
        if ((this$isLock == null) ? (other$isLock != null) : !this$isLock.equals(other$isLock)) return false;
        Object this$parentId = getParentId(), other$parentId = other.getParentId();
        if ((this$parentId == null) ? (other$parentId != null) : !this$parentId.equals(other$parentId)) return false;
        Object this$parentName = getParentName(), other$parentName = other.getParentName();
        if ((this$parentName == null) ? (other$parentName != null) : !this$parentName.equals(other$parentName))
            return false;
        Object this$mUrl = getMUrl(), other$mUrl = other.getMUrl();
        if ((this$mUrl == null) ? (other$mUrl != null) : !this$mUrl.equals(other$mUrl)) return false;
        Object this$pcUrl = getPcUrl(), other$pcUrl = other.getPcUrl();
        return !((this$pcUrl == null) ? (other$pcUrl != null) : !this$pcUrl.equals(other$pcUrl));
    }
 
    protected boolean canEqual(Object other) {
        return other instanceof AgentInfoVO;
    }
 
    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();
        result = result * 59 + (($agentCode == null) ? 43 : $agentCode.hashCode());
        Object $addTime = getAddTime();
        result = result * 59 + (($addTime == null) ? 43 : $addTime.hashCode());
        Object $isLock = getIsLock();
        result = result * 59 + (($isLock == null) ? 43 : $isLock.hashCode());
        Object $parentId = getParentId();
        result = result * 59 + (($parentId == null) ? 43 : $parentId.hashCode());
        Object $parentName = getParentName();
        result = result * 59 + (($parentName == null) ? 43 : $parentName.hashCode());
        Object $mUrl = getMUrl();
        result = result * 59 + (($mUrl == null) ? 43 : $mUrl.hashCode());
        Object $pcUrl = getPcUrl();
        return result * 59 + (($pcUrl == null) ? 43 : $pcUrl.hashCode());
    }
 
    public String toString() {
        return "AgentInfoVO(id=" + getId() + ", agentName=" + getAgentName() + ", agentRealName=" + getAgentRealName() + ", agentPhone=" + getAgentPhone() + ", agentCode=" + getAgentCode() + ", addTime=" + getAddTime() + ", isLock=" + getIsLock() + ", parentId=" + getParentId() + ", parentName=" + getParentName() + ", mUrl=" + getMUrl() + ", pcUrl=" + getPcUrl() + ")";
    }
 
 
    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;
    }
 
    public Date getAddTime() {
        return this.addTime;
    }
 
    public Integer getIsLock() {
        return this.isLock;
    }
 
    public Integer getParentId() {
        return this.parentId;
    }
 
    public String getParentName() {
        return this.parentName;
    }
 
    public String getMUrl() {
        return this.mUrl;
    }
 
    public String getPcUrl() {
        return this.pcUrl;
    }
 
    public BigDecimal getTotalMoney() {
        return totalMoney;
    }
 
    public void setTotalMoney(BigDecimal totalMoney) {
        this.totalMoney = totalMoney;
    }
}