package com.qianwen.smartman.modules.coproduction.vo; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/coproduction/vo/OrderProcessEditWorkStationVO.class */ public class OrderProcessEditWorkStationVO implements Serializable { private static final long serialVersionUID = 8769955371825523292L; @ApiModelProperty("工单工序id") private Long orderProcessId; @ApiModelProperty("工位id,用逗号隔开") private String workstationId; @ApiModelProperty("工位名称,用逗号隔开") private String workstationName; public void setOrderProcessId(final Long orderProcessId) { this.orderProcessId = orderProcessId; } public void setWorkstationId(final String workstationId) { this.workstationId = workstationId; } public void setWorkstationName(final String workstationName) { this.workstationName = workstationName; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof OrderProcessEditWorkStationVO) { OrderProcessEditWorkStationVO other = (OrderProcessEditWorkStationVO) o; if (other.canEqual(this)) { Object this$orderProcessId = getOrderProcessId(); Object other$orderProcessId = other.getOrderProcessId(); if (this$orderProcessId == null) { if (other$orderProcessId != null) { return false; } } else if (!this$orderProcessId.equals(other$orderProcessId)) { return false; } Object this$workstationId = getWorkstationId(); Object other$workstationId = other.getWorkstationId(); if (this$workstationId == null) { if (other$workstationId != null) { return false; } } else if (!this$workstationId.equals(other$workstationId)) { return false; } Object this$workstationName = getWorkstationName(); Object other$workstationName = other.getWorkstationName(); return this$workstationName == null ? other$workstationName == null : this$workstationName.equals(other$workstationName); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof OrderProcessEditWorkStationVO; } public int hashCode() { Object $orderProcessId = getOrderProcessId(); int result = (1 * 59) + ($orderProcessId == null ? 43 : $orderProcessId.hashCode()); Object $workstationId = getWorkstationId(); int result2 = (result * 59) + ($workstationId == null ? 43 : $workstationId.hashCode()); Object $workstationName = getWorkstationName(); return (result2 * 59) + ($workstationName == null ? 43 : $workstationName.hashCode()); } public String toString() { return "OrderProcessEditWorkStationVO(orderProcessId=" + getOrderProcessId() + ", workstationId=" + getWorkstationId() + ", workstationName=" + getWorkstationName() + ")"; } public Long getOrderProcessId() { return this.orderProcessId; } public String getWorkstationId() { return this.workstationId; } public String getWorkstationName() { return this.workstationName; } }