package com.qianwen.smartman.modules.coproduction.vo; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; import java.util.List; import com.qianwen.smartman.modules.cps.vo.FixtureVO; import com.qianwen.smartman.modules.tool.vo.ToolManageVO; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/coproduction/vo/OrderProcessRelationVO.class */ public class OrderProcessRelationVO implements Serializable { private static final long serialVersionUID = -8575022341062783283L; private Long processId; @ApiModelProperty("夹具集合") private List fixtureVOList; @ApiModelProperty("刀具集合") private List toolManageVOList; public void setProcessId(final Long processId) { this.processId = processId; } public void setFixtureVOList(final List fixtureVOList) { this.fixtureVOList = fixtureVOList; } public void setToolManageVOList(final List toolManageVOList) { this.toolManageVOList = toolManageVOList; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof OrderProcessRelationVO) { OrderProcessRelationVO other = (OrderProcessRelationVO) o; if (other.canEqual(this)) { Object this$processId = getProcessId(); Object other$processId = other.getProcessId(); if (this$processId == null) { if (other$processId != null) { return false; } } else if (!this$processId.equals(other$processId)) { return false; } Object this$fixtureVOList = getFixtureVOList(); Object other$fixtureVOList = other.getFixtureVOList(); if (this$fixtureVOList == null) { if (other$fixtureVOList != null) { return false; } } else if (!this$fixtureVOList.equals(other$fixtureVOList)) { return false; } Object this$toolManageVOList = getToolManageVOList(); Object other$toolManageVOList = other.getToolManageVOList(); return this$toolManageVOList == null ? other$toolManageVOList == null : this$toolManageVOList.equals(other$toolManageVOList); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof OrderProcessRelationVO; } public int hashCode() { Object $processId = getProcessId(); int result = (1 * 59) + ($processId == null ? 43 : $processId.hashCode()); Object $fixtureVOList = getFixtureVOList(); int result2 = (result * 59) + ($fixtureVOList == null ? 43 : $fixtureVOList.hashCode()); Object $toolManageVOList = getToolManageVOList(); return (result2 * 59) + ($toolManageVOList == null ? 43 : $toolManageVOList.hashCode()); } public String toString() { return "OrderProcessRelationVO(processId=" + getProcessId() + ", fixtureVOList=" + getFixtureVOList() + ", toolManageVOList=" + getToolManageVOList() + ")"; } public Long getProcessId() { return this.processId; } public List getFixtureVOList() { return this.fixtureVOList; } public List getToolManageVOList() { return this.toolManageVOList; } }