yangys
2024-04-04 ed4a5236bab800094be4a8378f5098eebe3de6ac
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
package com.qianwen.smartman.modules.system.dto;
 
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/dto/BaseCodeRuleQueryDTO.class */
public class BaseCodeRuleQueryDTO implements Serializable {
    @ApiModelProperty("业务对象")
    private String billFormId;
    @ApiModelProperty("子系统编码")
    private String subsysId;
    private String condition;
    private String objectId;
    private String dictKey;
 
    public void setBillFormId(final String billFormId) {
        this.billFormId = billFormId;
    }
 
    public void setSubsysId(final String subsysId) {
        this.subsysId = subsysId;
    }
 
    public void setCondition(final String condition) {
        this.condition = condition;
    }
 
    public void setObjectId(final String objectId) {
        this.objectId = objectId;
    }
 
    public void setDictKey(final String dictKey) {
        this.dictKey = dictKey;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof BaseCodeRuleQueryDTO) {
            BaseCodeRuleQueryDTO other = (BaseCodeRuleQueryDTO) o;
            if (other.canEqual(this)) {
                Object this$billFormId = getBillFormId();
                Object other$billFormId = other.getBillFormId();
                if (this$billFormId == null) {
                    if (other$billFormId != null) {
                        return false;
                    }
                } else if (!this$billFormId.equals(other$billFormId)) {
                    return false;
                }
                Object this$subsysId = getSubsysId();
                Object other$subsysId = other.getSubsysId();
                if (this$subsysId == null) {
                    if (other$subsysId != null) {
                        return false;
                    }
                } else if (!this$subsysId.equals(other$subsysId)) {
                    return false;
                }
                Object this$condition = getCondition();
                Object other$condition = other.getCondition();
                if (this$condition == null) {
                    if (other$condition != null) {
                        return false;
                    }
                } else if (!this$condition.equals(other$condition)) {
                    return false;
                }
                Object this$objectId = getObjectId();
                Object other$objectId = other.getObjectId();
                if (this$objectId == null) {
                    if (other$objectId != null) {
                        return false;
                    }
                } else if (!this$objectId.equals(other$objectId)) {
                    return false;
                }
                Object this$dictKey = getDictKey();
                Object other$dictKey = other.getDictKey();
                return this$dictKey == null ? other$dictKey == null : this$dictKey.equals(other$dictKey);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof BaseCodeRuleQueryDTO;
    }
 
    public int hashCode() {
        Object $billFormId = getBillFormId();
        int result = (1 * 59) + ($billFormId == null ? 43 : $billFormId.hashCode());
        Object $subsysId = getSubsysId();
        int result2 = (result * 59) + ($subsysId == null ? 43 : $subsysId.hashCode());
        Object $condition = getCondition();
        int result3 = (result2 * 59) + ($condition == null ? 43 : $condition.hashCode());
        Object $objectId = getObjectId();
        int result4 = (result3 * 59) + ($objectId == null ? 43 : $objectId.hashCode());
        Object $dictKey = getDictKey();
        return (result4 * 59) + ($dictKey == null ? 43 : $dictKey.hashCode());
    }
 
    public String toString() {
        return "BaseCodeRuleQueryDTO(billFormId=" + getBillFormId() + ", subsysId=" + getSubsysId() + ", condition=" + getCondition() + ", objectId=" + getObjectId() + ", dictKey=" + getDictKey() + ")";
    }
 
    public BaseCodeRuleQueryDTO(final String billFormId, final String subsysId, final String condition, final String objectId, final String dictKey) {
        this.billFormId = billFormId;
        this.subsysId = subsysId;
        this.condition = condition;
        this.objectId = objectId;
        this.dictKey = dictKey;
    }
 
    public String getBillFormId() {
        return this.billFormId;
    }
 
    public String getSubsysId() {
        return this.subsysId;
    }
 
    public String getCondition() {
        return this.condition;
    }
 
    public String getObjectId() {
        return this.objectId;
    }
 
    public String getDictKey() {
        return this.dictKey;
    }
}