zj
2024-06-03 287ac389edd047696d956afafdb855a93830bc0c
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
package com.nq.utils.ip.juhe;
 
 
public class AddressResultsVo {
    private String resultcode;
    private String reason;
    private AddressResult result;
    private int error_code;
 
    public void setResultcode(String resultcode) {
        this.resultcode = resultcode;
    }
 
    public void setReason(String reason) {
        this.reason = reason;
    }
 
    public void setResult(AddressResult result) {
        this.result = result;
    }
 
    public void setError_code(int error_code) {
        this.error_code = error_code;
    }
 
    public boolean equals(Object o) {
        if (o == this) return true;
        if (!(o instanceof AddressResultsVo)) return false;
        AddressResultsVo other = (AddressResultsVo) o;
        if (!other.canEqual(this)) return false;
        Object this$resultcode = getResultcode(), other$resultcode = other.getResultcode();
        if ((this$resultcode == null) ? (other$resultcode != null) : !this$resultcode.equals(other$resultcode))
            return false;
        Object this$reason = getReason(), other$reason = other.getReason();
        if ((this$reason == null) ? (other$reason != null) : !this$reason.equals(other$reason)) return false;
        Object this$result = getResult(), other$result = other.getResult();
        return ((this$result == null) ? (other$result != null) : !this$result.equals(other$result)) ? false : (!(getError_code() != other.getError_code()));
    }
 
    protected boolean canEqual(Object other) {
        return other instanceof AddressResultsVo;
    }
 
    public int hashCode() {
        int PRIME = 59;
        int result = 1;
        Object $resultcode = getResultcode();
        result = result * 59 + (($resultcode == null) ? 43 : $resultcode.hashCode());
        Object $reason = getReason();
        result = result * 59 + (($reason == null) ? 43 : $reason.hashCode());
        Object $result = getResult();
        result = result * 59 + (($result == null) ? 43 : $result.hashCode());
        return result * 59 + getError_code();
    }
 
    public String toString() {
        return "AddressResultsVo(resultcode=" + getResultcode() + ", reason=" + getReason() + ", result=" + getResult() + ", error_code=" + getError_code() + ")";
    }
 
 
    public String getResultcode() {
        return this.resultcode;
    }
 
    public String getReason() {
        return this.reason;
    }
 
    public AddressResult getResult() {
        return this.result;
    }
 
    public int getError_code() {
        return this.error_code;
    }
}