yangys
2024-04-01 86cdd920b68274185233383f69ddb974052b6b6f
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
package com.qianwen.smartman.modules.system.dto;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/dto/PasswordModifyValidInfo.class */
public class PasswordModifyValidInfo {
    private Integer passwordModifyType;
    private boolean compulsoryModify;
    private String message;
 
    public void setPasswordModifyType(final Integer passwordModifyType) {
        this.passwordModifyType = passwordModifyType;
    }
 
    public void setCompulsoryModify(final boolean compulsoryModify) {
        this.compulsoryModify = compulsoryModify;
    }
 
    public void setMessage(final String message) {
        this.message = message;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof PasswordModifyValidInfo) {
            PasswordModifyValidInfo other = (PasswordModifyValidInfo) o;
            if (other.canEqual(this) && isCompulsoryModify() == other.isCompulsoryModify()) {
                Object this$passwordModifyType = getPasswordModifyType();
                Object other$passwordModifyType = other.getPasswordModifyType();
                if (this$passwordModifyType == null) {
                    if (other$passwordModifyType != null) {
                        return false;
                    }
                } else if (!this$passwordModifyType.equals(other$passwordModifyType)) {
                    return false;
                }
                Object this$message = getMessage();
                Object other$message = other.getMessage();
                return this$message == null ? other$message == null : this$message.equals(other$message);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof PasswordModifyValidInfo;
    }
 
    public int hashCode() {
        int result = (1 * 59) + (isCompulsoryModify() ? 79 : 97);
        Object $passwordModifyType = getPasswordModifyType();
        int result2 = (result * 59) + ($passwordModifyType == null ? 43 : $passwordModifyType.hashCode());
        Object $message = getMessage();
        return (result2 * 59) + ($message == null ? 43 : $message.hashCode());
    }
 
    public String toString() {
        return "PasswordModifyValidInfo(passwordModifyType=" + getPasswordModifyType() + ", compulsoryModify=" + isCompulsoryModify() + ", message=" + getMessage() + ")";
    }
 
    public PasswordModifyValidInfo(final Integer passwordModifyType, final boolean compulsoryModify, final String message) {
        this.passwordModifyType = passwordModifyType;
        this.compulsoryModify = compulsoryModify;
        this.message = message;
    }
 
    /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/dto/PasswordModifyValidInfo$PasswordModifyValidInfoBuilder.class */
    public static class PasswordModifyValidInfoBuilder {
        private Integer passwordModifyType;
        private boolean compulsoryModify;
        private String message;
 
        PasswordModifyValidInfoBuilder() {
        }
 
        public PasswordModifyValidInfoBuilder passwordModifyType(final Integer passwordModifyType) {
            this.passwordModifyType = passwordModifyType;
            return this;
        }
 
        public PasswordModifyValidInfoBuilder compulsoryModify(final boolean compulsoryModify) {
            this.compulsoryModify = compulsoryModify;
            return this;
        }
 
        public PasswordModifyValidInfoBuilder message(final String message) {
            this.message = message;
            return this;
        }
 
        public PasswordModifyValidInfo build() {
            return new PasswordModifyValidInfo(this.passwordModifyType, this.compulsoryModify, this.message);
        }
 
        public String toString() {
            return "PasswordModifyValidInfo.PasswordModifyValidInfoBuilder(passwordModifyType=" + this.passwordModifyType + ", compulsoryModify=" + this.compulsoryModify + ", message=" + this.message + ")";
        }
    }
 
    public PasswordModifyValidInfo() {
    }
 
    public static PasswordModifyValidInfoBuilder builder() {
        return new PasswordModifyValidInfoBuilder();
    }
 
    public Integer getPasswordModifyType() {
        return this.passwordModifyType;
    }
 
    public boolean isCompulsoryModify() {
        return this.compulsoryModify;
    }
 
    public String getMessage() {
        return this.message;
    }
}