yangys
2024-03-31 2969df3e404db3cd116f27db1495e523ce05bf86
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
package com.qianwen.smartman.modules.mdc.dto;
 
import io.swagger.annotations.ApiModelProperty;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/dto/CountResult.class */
public class CountResult {
    @ApiModelProperty("数量")
    private Integer nums;
    @ApiModelProperty("状态")
    private Integer status;
 
    /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/dto/CountResult$CountResultBuilder.class */
    public static class CountResultBuilder {
        private Integer nums;
        private Integer status;
 
        CountResultBuilder() {
        }
 
        public CountResultBuilder nums(final Integer nums) {
            this.nums = nums;
            return this;
        }
 
        public CountResultBuilder status(final Integer status) {
            this.status = status;
            return this;
        }
 
        public CountResult build() {
            return new CountResult(this.nums, this.status);
        }
 
        public String toString() {
            return "CountResult.CountResultBuilder(nums=" + this.nums + ", status=" + this.status + ")";
        }
    }
 
    public void setNums(final Integer nums) {
        this.nums = nums;
    }
 
    public void setStatus(final Integer status) {
        this.status = status;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof CountResult) {
            CountResult other = (CountResult) o;
            if (other.canEqual(this)) {
                Object this$nums = getNums();
                Object other$nums = other.getNums();
                if (this$nums == null) {
                    if (other$nums != null) {
                        return false;
                    }
                } else if (!this$nums.equals(other$nums)) {
                    return false;
                }
                Object this$status = getStatus();
                Object other$status = other.getStatus();
                return this$status == null ? other$status == null : this$status.equals(other$status);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof CountResult;
    }
 
    public int hashCode() {
        Object $nums = getNums();
        int result = (1 * 59) + ($nums == null ? 43 : $nums.hashCode());
        Object $status = getStatus();
        return (result * 59) + ($status == null ? 43 : $status.hashCode());
    }
 
    public String toString() {
        return "CountResult(nums=" + getNums() + ", status=" + getStatus() + ")";
    }
 
    public static CountResultBuilder builder() {
        return new CountResultBuilder();
    }
 
    public CountResult() {
    }
 
    public CountResult(final Integer nums, final Integer status) {
        this.nums = nums;
        this.status = status;
    }
 
    public Integer getNums() {
        return this.nums;
    }
 
    public Integer getStatus() {
        return this.status;
    }
}