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; } }