yangys
2024-05-18 040976de6f9934b99f30268a28e2ecf42260e217
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
package com.qianwen.core.sms.model;
 
import java.io.Serializable;
import java.util.Map;
 
 
public class SmsData implements Serializable {
    private static final long serialVersionUID = 1;
    private String key;
    private Map<String, String> params;
 
    public SmsData setKey(final String key) {
        this.key = key;
        return this;
    }
 
    public SmsData setParams(final Map<String, String> params) {
        this.params = params;
        return this;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof SmsData) {
            SmsData other = (SmsData) o;
            if (other.canEqual(this)) {
                Object this$key = getKey();
                Object other$key = other.getKey();
                if (this$key == null) {
                    if (other$key != null) {
                        return false;
                    }
                } else if (!this$key.equals(other$key)) {
                    return false;
                }
                Object this$params = getParams();
                Object other$params = other.getParams();
                return this$params == null ? other$params == null : this$params.equals(other$params);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof SmsData;
    }
 
    public int hashCode() {
        Object $key = getKey();
        int result = (1 * 59) + ($key == null ? 43 : $key.hashCode());
        Object $params = getParams();
        return (result * 59) + ($params == null ? 43 : $params.hashCode());
    }
 
    public String toString() {
        return "SmsData(key=" + getKey() + ", params=" + getParams() + ")";
    }
 
    public SmsData(Map<String, String> params) {
        this.params = params;
    }
 
    public String getKey() {
        return this.key;
    }
 
    public Map<String, String> getParams() {
        return this.params;
    }
}