yangys
2024-09-04 04c57331cf84c8f606c2838dcb6fe5463fb9b68c
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
package com.qianwen.smartman.modules.mdc.dto;
 
import io.swagger.annotations.ApiModelProperty;
 
public class CountStatusDTO {
    @ApiModelProperty("状态数量")
    private Long count;
    @ApiModelProperty("状态name")
    private String statusName;
    @ApiModelProperty("code码")
    private String code;
 
    
    public static class CountStatusDTOBuilder {
        private Long count;
        private String statusName;
        private String code;
 
        CountStatusDTOBuilder() {
        }
 
        public CountStatusDTOBuilder count(final Long count) {
            this.count = count;
            return this;
        }
 
        public CountStatusDTOBuilder statusName(final String statusName) {
            this.statusName = statusName;
            return this;
        }
 
        public CountStatusDTOBuilder code(final String code) {
            this.code = code;
            return this;
        }
 
        public CountStatusDTO build() {
            return new CountStatusDTO(this.count, this.statusName, this.code);
        }
 
        public String toString() {
            return "CountStatusDTO.CountStatusDTOBuilder(count=" + this.count + ", statusName=" + this.statusName + ", code=" + this.code + ")";
        }
    }
 
    public void setCount(final Long count) {
        this.count = count;
    }
 
    public void setStatusName(final String statusName) {
        this.statusName = statusName;
    }
 
    public void setCode(final String code) {
        this.code = code;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof CountStatusDTO) {
            CountStatusDTO other = (CountStatusDTO) 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$statusName = getStatusName();
                Object other$statusName = other.getStatusName();
                if (this$statusName == null) {
                    if (other$statusName != null) {
                        return false;
                    }
                } else if (!this$statusName.equals(other$statusName)) {
                    return false;
                }
                Object this$code = getCode();
                Object other$code = other.getCode();
                return this$code == null ? other$code == null : this$code.equals(other$code);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof CountStatusDTO;
    }
 
    public int hashCode() {
        Object $count = getCount();
        int result = (1 * 59) + ($count == null ? 43 : $count.hashCode());
        Object $statusName = getStatusName();
        int result2 = (result * 59) + ($statusName == null ? 43 : $statusName.hashCode());
        Object $code = getCode();
        return (result2 * 59) + ($code == null ? 43 : $code.hashCode());
    }
 
    public String toString() {
        return "CountStatusDTO(count=" + getCount() + ", statusName=" + getStatusName() + ", code=" + getCode() + ")";
    }
 
    public static CountStatusDTOBuilder builder() {
        return new CountStatusDTOBuilder();
    }
 
    public CountStatusDTO() {
    }
 
    public CountStatusDTO(final Long count, final String statusName, final String code) {
        this.count = count;
        this.statusName = statusName;
        this.code = code;
    }
 
    public Long getCount() {
        return this.count;
    }
 
    public String getStatusName() {
        return this.statusName;
    }
 
    public String getCode() {
        return this.code;
    }
}