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
package com.qianwen.smartman.modules.system.vo;
 
import java.io.Serializable;
import java.sql.Timestamp;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/vo/GanttStatusVO.class */
public class GanttStatusVO implements Serializable {
    private Timestamp startTime;
    private Timestamp endTime;
    private Integer status;
 
    public void setStartTime(final Timestamp startTime) {
        this.startTime = startTime;
    }
 
    public void setEndTime(final Timestamp endTime) {
        this.endTime = endTime;
    }
 
    public void setStatus(final Integer status) {
        this.status = status;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof GanttStatusVO) {
            GanttStatusVO other = (GanttStatusVO) 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$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();
                return this$endTime == null ? other$endTime == null : this$endTime.equals(other$endTime);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof GanttStatusVO;
    }
 
    public int hashCode() {
        Object $status = getStatus();
        int result = (1 * 59) + ($status == null ? 43 : $status.hashCode());
        Object $startTime = getStartTime();
        int result2 = (result * 59) + ($startTime == null ? 43 : $startTime.hashCode());
        Object $endTime = getEndTime();
        return (result2 * 59) + ($endTime == null ? 43 : $endTime.hashCode());
    }
 
    public String toString() {
        return "GanttStatusVO(startTime=" + getStartTime() + ", endTime=" + getEndTime() + ", status=" + getStatus() + ")";
    }
 
    public GanttStatusVO(final Timestamp startTime, final Timestamp endTime, final Integer status) {
        this.startTime = startTime;
        this.endTime = endTime;
        this.status = status;
    }
 
    /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/vo/GanttStatusVO$GanttStatusVOBuilder.class */
    public static class GanttStatusVOBuilder {
        private Timestamp startTime;
        private Timestamp endTime;
        private Integer status;
 
        GanttStatusVOBuilder() {
        }
 
        public GanttStatusVOBuilder startTime(final Timestamp startTime) {
            this.startTime = startTime;
            return this;
        }
 
        public GanttStatusVOBuilder endTime(final Timestamp endTime) {
            this.endTime = endTime;
            return this;
        }
 
        public GanttStatusVOBuilder status(final Integer status) {
            this.status = status;
            return this;
        }
 
        public GanttStatusVO build() {
            return new GanttStatusVO(this.startTime, this.endTime, this.status);
        }
 
        public String toString() {
            return "GanttStatusVO.GanttStatusVOBuilder(startTime=" + this.startTime + ", endTime=" + this.endTime + ", status=" + this.status + ")";
        }
    }
 
    public GanttStatusVO() {
    }
 
    public static GanttStatusVOBuilder builder() {
        return new GanttStatusVOBuilder();
    }
 
    public Timestamp getStartTime() {
        return this.startTime;
    }
 
    public Timestamp getEndTime() {
        return this.endTime;
    }
 
    public Integer getStatus() {
        return this.status;
    }
}