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
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
package com.qianwen.smartman.modules.dnc.vo;
 
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/dnc/vo/ReceiveScheduleVO.class */
public class ReceiveScheduleVO implements Serializable {
    private static final long serialVersionUID = -5404971530232060778L;
    @ApiModelProperty("数据状态,被取消或发生异常时为false")
    private Boolean status;
    @ApiModelProperty("是否结束")
    private Boolean isFinished;
    @ApiModelProperty("已接收字节数")
    private Integer receiveBytes;
    @ApiModelProperty("按指定编码的数据内容")
    private String content;
    @ApiModelProperty("异常消息,作为数据状态为false时参考")
    private String exceptionMessage;
    @ApiModelProperty("接收速度 单位 字节/秒")
    private Integer receiveSpeed;
 
    /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/dnc/vo/ReceiveScheduleVO$ReceiveScheduleVOBuilder.class */
    public static class ReceiveScheduleVOBuilder {
        private Boolean status;
        private Boolean isFinished;
        private Integer receiveBytes;
        private String content;
        private String exceptionMessage;
        private Integer receiveSpeed;
 
        ReceiveScheduleVOBuilder() {
        }
 
        public ReceiveScheduleVOBuilder status(final Boolean status) {
            this.status = status;
            return this;
        }
 
        public ReceiveScheduleVOBuilder isFinished(final Boolean isFinished) {
            this.isFinished = isFinished;
            return this;
        }
 
        public ReceiveScheduleVOBuilder receiveBytes(final Integer receiveBytes) {
            this.receiveBytes = receiveBytes;
            return this;
        }
 
        public ReceiveScheduleVOBuilder content(final String content) {
            this.content = content;
            return this;
        }
 
        public ReceiveScheduleVOBuilder exceptionMessage(final String exceptionMessage) {
            this.exceptionMessage = exceptionMessage;
            return this;
        }
 
        public ReceiveScheduleVOBuilder receiveSpeed(final Integer receiveSpeed) {
            this.receiveSpeed = receiveSpeed;
            return this;
        }
 
        public ReceiveScheduleVO build() {
            return new ReceiveScheduleVO(this.status, this.isFinished, this.receiveBytes, this.content, this.exceptionMessage, this.receiveSpeed);
        }
 
        public String toString() {
            return "ReceiveScheduleVO.ReceiveScheduleVOBuilder(status=" + this.status + ", isFinished=" + this.isFinished + ", receiveBytes=" + this.receiveBytes + ", content=" + this.content + ", exceptionMessage=" + this.exceptionMessage + ", receiveSpeed=" + this.receiveSpeed + ")";
        }
    }
 
    public void setStatus(final Boolean status) {
        this.status = status;
    }
 
    public void setIsFinished(final Boolean isFinished) {
        this.isFinished = isFinished;
    }
 
    public void setReceiveBytes(final Integer receiveBytes) {
        this.receiveBytes = receiveBytes;
    }
 
    public void setContent(final String content) {
        this.content = content;
    }
 
    public void setExceptionMessage(final String exceptionMessage) {
        this.exceptionMessage = exceptionMessage;
    }
 
    public void setReceiveSpeed(final Integer receiveSpeed) {
        this.receiveSpeed = receiveSpeed;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof ReceiveScheduleVO) {
            ReceiveScheduleVO other = (ReceiveScheduleVO) o;
            if (other.canEqual(this)) {
                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$isFinished = getIsFinished();
                Object other$isFinished = other.getIsFinished();
                if (this$isFinished == null) {
                    if (other$isFinished != null) {
                        return false;
                    }
                } else if (!this$isFinished.equals(other$isFinished)) {
                    return false;
                }
                Object this$receiveBytes = getReceiveBytes();
                Object other$receiveBytes = other.getReceiveBytes();
                if (this$receiveBytes == null) {
                    if (other$receiveBytes != null) {
                        return false;
                    }
                } else if (!this$receiveBytes.equals(other$receiveBytes)) {
                    return false;
                }
                Object this$receiveSpeed = getReceiveSpeed();
                Object other$receiveSpeed = other.getReceiveSpeed();
                if (this$receiveSpeed == null) {
                    if (other$receiveSpeed != null) {
                        return false;
                    }
                } else if (!this$receiveSpeed.equals(other$receiveSpeed)) {
                    return false;
                }
                Object this$content = getContent();
                Object other$content = other.getContent();
                if (this$content == null) {
                    if (other$content != null) {
                        return false;
                    }
                } else if (!this$content.equals(other$content)) {
                    return false;
                }
                Object this$exceptionMessage = getExceptionMessage();
                Object other$exceptionMessage = other.getExceptionMessage();
                return this$exceptionMessage == null ? other$exceptionMessage == null : this$exceptionMessage.equals(other$exceptionMessage);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof ReceiveScheduleVO;
    }
 
    public int hashCode() {
        Object $status = getStatus();
        int result = (1 * 59) + ($status == null ? 43 : $status.hashCode());
        Object $isFinished = getIsFinished();
        int result2 = (result * 59) + ($isFinished == null ? 43 : $isFinished.hashCode());
        Object $receiveBytes = getReceiveBytes();
        int result3 = (result2 * 59) + ($receiveBytes == null ? 43 : $receiveBytes.hashCode());
        Object $receiveSpeed = getReceiveSpeed();
        int result4 = (result3 * 59) + ($receiveSpeed == null ? 43 : $receiveSpeed.hashCode());
        Object $content = getContent();
        int result5 = (result4 * 59) + ($content == null ? 43 : $content.hashCode());
        Object $exceptionMessage = getExceptionMessage();
        return (result5 * 59) + ($exceptionMessage == null ? 43 : $exceptionMessage.hashCode());
    }
 
    public String toString() {
        return "ReceiveScheduleVO(status=" + getStatus() + ", isFinished=" + getIsFinished() + ", receiveBytes=" + getReceiveBytes() + ", content=" + getContent() + ", exceptionMessage=" + getExceptionMessage() + ", receiveSpeed=" + getReceiveSpeed() + ")";
    }
 
    public static ReceiveScheduleVOBuilder builder() {
        return new ReceiveScheduleVOBuilder();
    }
 
    public ReceiveScheduleVO() {
    }
 
    public ReceiveScheduleVO(final Boolean status, final Boolean isFinished, final Integer receiveBytes, final String content, final String exceptionMessage, final Integer receiveSpeed) {
        this.status = status;
        this.isFinished = isFinished;
        this.receiveBytes = receiveBytes;
        this.content = content;
        this.exceptionMessage = exceptionMessage;
        this.receiveSpeed = receiveSpeed;
    }
 
    public Boolean getStatus() {
        return this.status;
    }
 
    public Boolean getIsFinished() {
        return this.isFinished;
    }
 
    public Integer getReceiveBytes() {
        return this.receiveBytes;
    }
 
    public String getContent() {
        return this.content;
    }
 
    public String getExceptionMessage() {
        return this.exceptionMessage;
    }
 
    public Integer getReceiveSpeed() {
        return this.receiveSpeed;
    }
}