yangys
2024-05-09 60e317f7782c718d28920060fd686d2092c99c1e
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
package com.qianwen.core.coderule.model;
 
import java.io.Serializable;
import java.util.List;
 
/* loaded from: blade-starter-coderule-9.3.0.0-SNAPSHOT.jar:org/springblade/core/coderule/model/CodeRuleModel.class */
public class CodeRuleModel implements Serializable {
    private Boolean searched;
    private Long id;
    private String bill_form_id;
    private Boolean autoBillNo;
    private Boolean repairBillNo;
    private Boolean constLength;
    private List<CodeRuleEntryModel> codeRuleEntryModelList;
 
    public void setSearched(final Boolean searched) {
        this.searched = searched;
    }
 
    public void setId(final Long id) {
        this.id = id;
    }
 
    public void setBill_form_id(final String bill_form_id) {
        this.bill_form_id = bill_form_id;
    }
 
    public void setAutoBillNo(final Boolean autoBillNo) {
        this.autoBillNo = autoBillNo;
    }
 
    public void setRepairBillNo(final Boolean repairBillNo) {
        this.repairBillNo = repairBillNo;
    }
 
    public void setConstLength(final Boolean constLength) {
        this.constLength = constLength;
    }
 
    public void setCodeRuleEntryModelList(final List<CodeRuleEntryModel> codeRuleEntryModelList) {
        this.codeRuleEntryModelList = codeRuleEntryModelList;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof CodeRuleModel) {
            CodeRuleModel other = (CodeRuleModel) o;
            if (other.canEqual(this)) {
                Object this$searched = getSearched();
                Object other$searched = other.getSearched();
                if (this$searched == null) {
                    if (other$searched != null) {
                        return false;
                    }
                } else if (!this$searched.equals(other$searched)) {
                    return false;
                }
                Object this$id = getId();
                Object other$id = other.getId();
                if (this$id == null) {
                    if (other$id != null) {
                        return false;
                    }
                } else if (!this$id.equals(other$id)) {
                    return false;
                }
                Object this$autoBillNo = getAutoBillNo();
                Object other$autoBillNo = other.getAutoBillNo();
                if (this$autoBillNo == null) {
                    if (other$autoBillNo != null) {
                        return false;
                    }
                } else if (!this$autoBillNo.equals(other$autoBillNo)) {
                    return false;
                }
                Object this$repairBillNo = getRepairBillNo();
                Object other$repairBillNo = other.getRepairBillNo();
                if (this$repairBillNo == null) {
                    if (other$repairBillNo != null) {
                        return false;
                    }
                } else if (!this$repairBillNo.equals(other$repairBillNo)) {
                    return false;
                }
                Object this$constLength = getConstLength();
                Object other$constLength = other.getConstLength();
                if (this$constLength == null) {
                    if (other$constLength != null) {
                        return false;
                    }
                } else if (!this$constLength.equals(other$constLength)) {
                    return false;
                }
                Object this$bill_form_id = getBill_form_id();
                Object other$bill_form_id = other.getBill_form_id();
                if (this$bill_form_id == null) {
                    if (other$bill_form_id != null) {
                        return false;
                    }
                } else if (!this$bill_form_id.equals(other$bill_form_id)) {
                    return false;
                }
                Object this$codeRuleEntryModelList = getCodeRuleEntryModelList();
                Object other$codeRuleEntryModelList = other.getCodeRuleEntryModelList();
                return this$codeRuleEntryModelList == null ? other$codeRuleEntryModelList == null : this$codeRuleEntryModelList.equals(other$codeRuleEntryModelList);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof CodeRuleModel;
    }
 
    public int hashCode() {
        Object $searched = getSearched();
        int result = (1 * 59) + ($searched == null ? 43 : $searched.hashCode());
        Object $id = getId();
        int result2 = (result * 59) + ($id == null ? 43 : $id.hashCode());
        Object $autoBillNo = getAutoBillNo();
        int result3 = (result2 * 59) + ($autoBillNo == null ? 43 : $autoBillNo.hashCode());
        Object $repairBillNo = getRepairBillNo();
        int result4 = (result3 * 59) + ($repairBillNo == null ? 43 : $repairBillNo.hashCode());
        Object $constLength = getConstLength();
        int result5 = (result4 * 59) + ($constLength == null ? 43 : $constLength.hashCode());
        Object $bill_form_id = getBill_form_id();
        int result6 = (result5 * 59) + ($bill_form_id == null ? 43 : $bill_form_id.hashCode());
        Object $codeRuleEntryModelList = getCodeRuleEntryModelList();
        return (result6 * 59) + ($codeRuleEntryModelList == null ? 43 : $codeRuleEntryModelList.hashCode());
    }
 
    public String toString() {
        return "CodeRuleModel(searched=" + getSearched() + ", id=" + getId() + ", bill_form_id=" + getBill_form_id() + ", autoBillNo=" + getAutoBillNo() + ", repairBillNo=" + getRepairBillNo() + ", constLength=" + getConstLength() + ", codeRuleEntryModelList=" + getCodeRuleEntryModelList() + ")";
    }
 
    public CodeRuleModel() {
        this.searched = Boolean.FALSE;
    }
 
    public CodeRuleModel(Boolean searched) {
        this.searched = Boolean.FALSE;
        this.searched = searched;
    }
 
    public Boolean getSearched() {
        return this.searched;
    }
 
    public Long getId() {
        return this.id;
    }
 
    public String getBill_form_id() {
        return this.bill_form_id;
    }
 
    public Boolean getAutoBillNo() {
        return this.autoBillNo;
    }
 
    public Boolean getRepairBillNo() {
        return this.repairBillNo;
    }
 
    public Boolean getConstLength() {
        return this.constLength;
    }
 
    public List<CodeRuleEntryModel> getCodeRuleEntryModelList() {
        return this.codeRuleEntryModelList;
    }
}