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/PlanProcessWorkStationAssignVO.class */
|
public class PlanProcessWorkStationAssignVO implements Serializable {
|
private static final long serialVersionUID = 8769955371825523292L;
|
@ApiModelProperty("计划工序id")
|
private Long planProcessId;
|
@ApiModelProperty("工位id,用逗号隔开")
|
private String workstationId;
|
@ApiModelProperty("工位名称,用逗号隔开")
|
private String workstationName;
|
|
public void setPlanProcessId(final Long planProcessId) {
|
this.planProcessId = planProcessId;
|
}
|
|
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 PlanProcessWorkStationAssignVO) {
|
PlanProcessWorkStationAssignVO other = (PlanProcessWorkStationAssignVO) o;
|
if (other.canEqual(this)) {
|
Object this$planProcessId = getPlanProcessId();
|
Object other$planProcessId = other.getPlanProcessId();
|
if (this$planProcessId == null) {
|
if (other$planProcessId != null) {
|
return false;
|
}
|
} else if (!this$planProcessId.equals(other$planProcessId)) {
|
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 PlanProcessWorkStationAssignVO;
|
}
|
|
public int hashCode() {
|
Object $planProcessId = getPlanProcessId();
|
int result = (1 * 59) + ($planProcessId == null ? 43 : $planProcessId.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 "PlanProcessWorkStationAssignVO(planProcessId=" + getPlanProcessId() + ", workstationId=" + getWorkstationId() + ", workstationName=" + getWorkstationName() + ")";
|
}
|
|
public Long getPlanProcessId() {
|
return this.planProcessId;
|
}
|
|
public String getWorkstationId() {
|
return this.workstationId;
|
}
|
|
public String getWorkstationName() {
|
return this.workstationName;
|
}
|
}
|