yangys
2024-10-09 7ef593e1e3c35aaeecf9318f0b3941230d3ed002
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
package com.qianwen.mdc.collect.dto;
 
public class StateAggregateTimeDTO {
    private Long startTime;
    private Long endTime;
    private Boolean noFeedbackTime;
 
    public void setStartTime(final Long startTime) {
        this.startTime = startTime;
    }
 
    public void setEndTime(final Long endTime) {
        this.endTime = endTime;
    }
 
    public void setNoFeedbackTime(final Boolean noFeedbackTime) {
        this.noFeedbackTime = noFeedbackTime;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof StateAggregateTimeDTO) {
            StateAggregateTimeDTO other = (StateAggregateTimeDTO) o;
            if (other.canEqual(this)) {
                Object this$startTime = getStartTime();
                Object other$startTime = other.getStartTime();
                if (this$startTime == null) {
                    if (other$startTime != null) {
                        return false;
                    }
                } else if (!this$startTime.equals(other$startTime)) {
                    return false;
                }
                Object this$endTime = getEndTime();
                Object other$endTime = other.getEndTime();
                if (this$endTime == null) {
                    if (other$endTime != null) {
                        return false;
                    }
                } else if (!this$endTime.equals(other$endTime)) {
                    return false;
                }
                Object this$noFeedbackTime = getNoFeedbackTime();
                Object other$noFeedbackTime = other.getNoFeedbackTime();
                return this$noFeedbackTime == null ? other$noFeedbackTime == null : this$noFeedbackTime.equals(other$noFeedbackTime);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof StateAggregateTimeDTO;
    }
 
    public int hashCode() {
        Object $startTime = getStartTime();
        int result = (1 * 59) + ($startTime == null ? 43 : $startTime.hashCode());
        Object $endTime = getEndTime();
        int result2 = (result * 59) + ($endTime == null ? 43 : $endTime.hashCode());
        Object $noFeedbackTime = getNoFeedbackTime();
        return (result2 * 59) + ($noFeedbackTime == null ? 43 : $noFeedbackTime.hashCode());
    }
 
    public String toString() {
        return "WorkstationStateAggregateTimeDTO(startTime=" + getStartTime() + ", endTime=" + getEndTime() + ", noFeedbackTime=" + getNoFeedbackTime() + ")";
    }
 
    public Long getStartTime() {
        return this.startTime;
    }
 
    public Long getEndTime() {
        return this.endTime;
    }
 
    public Boolean getNoFeedbackTime() {
        return this.noFeedbackTime;
    }
}