package com.qianwen.smartman.modules.mdc.vo; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; import java.util.List; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/vo/StatusTimeTotalVO.class */ public class StatusTimeTotalVO implements Serializable { private static final long serialVersionUID = -530938150418043787L; @ApiModelProperty("工位组ID") private String groupId; @ApiModelProperty("工位组名称") private String groupName; @ApiModelProperty("总时长") private Long totalTime; @ApiModelProperty("总时长") private List list; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/vo/StatusTimeTotalVO$StatusTimeTotalVOBuilder.class */ public static class StatusTimeTotalVOBuilder { private String groupId; private String groupName; private Long totalTime; private List list; StatusTimeTotalVOBuilder() { } public StatusTimeTotalVOBuilder groupId(final String groupId) { this.groupId = groupId; return this; } public StatusTimeTotalVOBuilder groupName(final String groupName) { this.groupName = groupName; return this; } public StatusTimeTotalVOBuilder totalTime(final Long totalTime) { this.totalTime = totalTime; return this; } public StatusTimeTotalVOBuilder list(final List list) { this.list = list; return this; } public StatusTimeTotalVO build() { return new StatusTimeTotalVO(this.groupId, this.groupName, this.totalTime, this.list); } public String toString() { return "StatusTimeTotalVO.StatusTimeTotalVOBuilder(groupId=" + this.groupId + ", groupName=" + this.groupName + ", totalTime=" + this.totalTime + ", list=" + this.list + ")"; } } public void setGroupId(final String groupId) { this.groupId = groupId; } public void setGroupName(final String groupName) { this.groupName = groupName; } public void setTotalTime(final Long totalTime) { this.totalTime = totalTime; } public void setList(final List list) { this.list = list; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof StatusTimeTotalVO) { StatusTimeTotalVO other = (StatusTimeTotalVO) o; if (other.canEqual(this)) { Object this$totalTime = getTotalTime(); Object other$totalTime = other.getTotalTime(); if (this$totalTime == null) { if (other$totalTime != null) { return false; } } else if (!this$totalTime.equals(other$totalTime)) { return false; } Object this$groupId = getGroupId(); Object other$groupId = other.getGroupId(); if (this$groupId == null) { if (other$groupId != null) { return false; } } else if (!this$groupId.equals(other$groupId)) { return false; } Object this$groupName = getGroupName(); Object other$groupName = other.getGroupName(); if (this$groupName == null) { if (other$groupName != null) { return false; } } else if (!this$groupName.equals(other$groupName)) { return false; } Object this$list = getList(); Object other$list = other.getList(); return this$list == null ? other$list == null : this$list.equals(other$list); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof StatusTimeTotalVO; } public int hashCode() { Object $totalTime = getTotalTime(); int result = (1 * 59) + ($totalTime == null ? 43 : $totalTime.hashCode()); Object $groupId = getGroupId(); int result2 = (result * 59) + ($groupId == null ? 43 : $groupId.hashCode()); Object $groupName = getGroupName(); int result3 = (result2 * 59) + ($groupName == null ? 43 : $groupName.hashCode()); Object $list = getList(); return (result3 * 59) + ($list == null ? 43 : $list.hashCode()); } public String toString() { return "StatusTimeTotalVO(groupId=" + getGroupId() + ", groupName=" + getGroupName() + ", totalTime=" + getTotalTime() + ", list=" + getList() + ")"; } public static StatusTimeTotalVOBuilder builder() { return new StatusTimeTotalVOBuilder(); } public StatusTimeTotalVO() { } public StatusTimeTotalVO(final String groupId, final String groupName, final Long totalTime, final List list) { this.groupId = groupId; this.groupName = groupName; this.totalTime = totalTime; this.list = list; } public String getGroupId() { return this.groupId; } public String getGroupName() { return this.groupName; } public Long getTotalTime() { return this.totalTime; } public List getList() { return this.list; } }