yangys
2024-03-27 e48aa2ac8dea1be5db11c63edf0b912c4ad5ce65
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
package com.qianwen.smartman.modules.mdc.vo;
 
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import java.math.BigDecimal;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/vo/StatusTimeTotalDetailVO.class */
public class StatusTimeTotalDetailVO implements Serializable {
    private static final long serialVersionUID = -530938150418043787L;
    @ApiModelProperty("状态总时长")
    private Long statusTotalTime;
    @ApiModelProperty("状态值")
    private String status;
    @ApiModelProperty("状态名称")
    private String statusName;
    @ApiModelProperty("占比")
    private BigDecimal Proportion;
    @ApiModelProperty("状态时长展示")
    private String showTotalTime;
 
    /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/vo/StatusTimeTotalDetailVO$StatusTimeTotalDetailVOBuilder.class */
    public static class StatusTimeTotalDetailVOBuilder {
        private Long statusTotalTime;
        private String status;
        private String statusName;
        private BigDecimal Proportion;
        private String showTotalTime;
 
        StatusTimeTotalDetailVOBuilder() {
        }
 
        public StatusTimeTotalDetailVOBuilder statusTotalTime(final Long statusTotalTime) {
            this.statusTotalTime = statusTotalTime;
            return this;
        }
 
        public StatusTimeTotalDetailVOBuilder status(final String status) {
            this.status = status;
            return this;
        }
 
        public StatusTimeTotalDetailVOBuilder statusName(final String statusName) {
            this.statusName = statusName;
            return this;
        }
 
        public StatusTimeTotalDetailVOBuilder Proportion(final BigDecimal Proportion) {
            this.Proportion = Proportion;
            return this;
        }
 
        public StatusTimeTotalDetailVOBuilder showTotalTime(final String showTotalTime) {
            this.showTotalTime = showTotalTime;
            return this;
        }
 
        public StatusTimeTotalDetailVO build() {
            return new StatusTimeTotalDetailVO(this.statusTotalTime, this.status, this.statusName, this.Proportion, this.showTotalTime);
        }
 
        public String toString() {
            return "StatusTimeTotalDetailVO.StatusTimeTotalDetailVOBuilder(statusTotalTime=" + this.statusTotalTime + ", status=" + this.status + ", statusName=" + this.statusName + ", Proportion=" + this.Proportion + ", showTotalTime=" + this.showTotalTime + ")";
        }
    }
 
    public void setStatusTotalTime(final Long statusTotalTime) {
        this.statusTotalTime = statusTotalTime;
    }
 
    public void setStatus(final String status) {
        this.status = status;
    }
 
    public void setStatusName(final String statusName) {
        this.statusName = statusName;
    }
 
    public void setProportion(final BigDecimal Proportion) {
        this.Proportion = Proportion;
    }
 
    public void setShowTotalTime(final String showTotalTime) {
        this.showTotalTime = showTotalTime;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof StatusTimeTotalDetailVO) {
            StatusTimeTotalDetailVO other = (StatusTimeTotalDetailVO) o;
            if (other.canEqual(this)) {
                Object this$statusTotalTime = getStatusTotalTime();
                Object other$statusTotalTime = other.getStatusTotalTime();
                if (this$statusTotalTime == null) {
                    if (other$statusTotalTime != null) {
                        return false;
                    }
                } else if (!this$statusTotalTime.equals(other$statusTotalTime)) {
                    return false;
                }
                Object this$status = getStatus();
                Object other$status = other.getStatus();
                if (this$status == null) {
                    if (other$status != null) {
                        return false;
                    }
                } else if (!this$status.equals(other$status)) {
                    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$Proportion = getProportion();
                Object other$Proportion = other.getProportion();
                if (this$Proportion == null) {
                    if (other$Proportion != null) {
                        return false;
                    }
                } else if (!this$Proportion.equals(other$Proportion)) {
                    return false;
                }
                Object this$showTotalTime = getShowTotalTime();
                Object other$showTotalTime = other.getShowTotalTime();
                return this$showTotalTime == null ? other$showTotalTime == null : this$showTotalTime.equals(other$showTotalTime);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof StatusTimeTotalDetailVO;
    }
 
    public int hashCode() {
        Object $statusTotalTime = getStatusTotalTime();
        int result = (1 * 59) + ($statusTotalTime == null ? 43 : $statusTotalTime.hashCode());
        Object $status = getStatus();
        int result2 = (result * 59) + ($status == null ? 43 : $status.hashCode());
        Object $statusName = getStatusName();
        int result3 = (result2 * 59) + ($statusName == null ? 43 : $statusName.hashCode());
        Object $Proportion = getProportion();
        int result4 = (result3 * 59) + ($Proportion == null ? 43 : $Proportion.hashCode());
        Object $showTotalTime = getShowTotalTime();
        return (result4 * 59) + ($showTotalTime == null ? 43 : $showTotalTime.hashCode());
    }
 
    public String toString() {
        return "StatusTimeTotalDetailVO(statusTotalTime=" + getStatusTotalTime() + ", status=" + getStatus() + ", statusName=" + getStatusName() + ", Proportion=" + getProportion() + ", showTotalTime=" + getShowTotalTime() + ")";
    }
 
    public static StatusTimeTotalDetailVOBuilder builder() {
        return new StatusTimeTotalDetailVOBuilder();
    }
 
    public StatusTimeTotalDetailVO() {
    }
 
    public StatusTimeTotalDetailVO(final Long statusTotalTime, final String status, final String statusName, final BigDecimal Proportion, final String showTotalTime) {
        this.statusTotalTime = statusTotalTime;
        this.status = status;
        this.statusName = statusName;
        this.Proportion = Proportion;
        this.showTotalTime = showTotalTime;
    }
 
    public Long getStatusTotalTime() {
        return this.statusTotalTime;
    }
 
    public String getStatus() {
        return this.status;
    }
 
    public String getStatusName() {
        return this.statusName;
    }
 
    public BigDecimal getProportion() {
        return this.Proportion;
    }
 
    public String getShowTotalTime() {
        return this.showTotalTime;
    }
}