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
package com.qianwen.smartman.modules.system.vo;
 
import java.io.Serializable;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/vo/CodeRuleCountVO.class */
public class CodeRuleCountVO implements Serializable {
    private Integer count;
    private String billFormId;
 
    public void setCount(final Integer count) {
        this.count = count;
    }
 
    public void setBillFormId(final String billFormId) {
        this.billFormId = billFormId;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof CodeRuleCountVO) {
            CodeRuleCountVO other = (CodeRuleCountVO) o;
            if (other.canEqual(this)) {
                Object this$count = getCount();
                Object other$count = other.getCount();
                if (this$count == null) {
                    if (other$count != null) {
                        return false;
                    }
                } else if (!this$count.equals(other$count)) {
                    return false;
                }
                Object this$billFormId = getBillFormId();
                Object other$billFormId = other.getBillFormId();
                return this$billFormId == null ? other$billFormId == null : this$billFormId.equals(other$billFormId);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof CodeRuleCountVO;
    }
 
    public int hashCode() {
        Object $count = getCount();
        int result = (1 * 59) + ($count == null ? 43 : $count.hashCode());
        Object $billFormId = getBillFormId();
        return (result * 59) + ($billFormId == null ? 43 : $billFormId.hashCode());
    }
 
    public String toString() {
        return "CodeRuleCountVO(count=" + getCount() + ", billFormId=" + getBillFormId() + ")";
    }
 
    public Integer getCount() {
        return this.count;
    }
 
    public String getBillFormId() {
        return this.billFormId;
    }
}