package com.qianwen.smartman.modules.coproduction.dto;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/coproduction/dto/PlanProcessDTO.class */
|
public class PlanProcessDTO {
|
@ApiModelProperty("计划工序id")
|
private Long planProcessId;
|
@ApiModelProperty("工序编号")
|
private String processCode;
|
@ApiModelProperty("工位id列表,隔开")
|
private String workstationIds;
|
@ApiModelProperty("工位名称列表,隔开")
|
private String workstationNames;
|
|
public void setPlanProcessId(final Long planProcessId) {
|
this.planProcessId = planProcessId;
|
}
|
|
public void setProcessCode(final String processCode) {
|
this.processCode = processCode;
|
}
|
|
public void setWorkstationIds(final String workstationIds) {
|
this.workstationIds = workstationIds;
|
}
|
|
public void setWorkstationNames(final String workstationNames) {
|
this.workstationNames = workstationNames;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof PlanProcessDTO) {
|
PlanProcessDTO other = (PlanProcessDTO) 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$processCode = getProcessCode();
|
Object other$processCode = other.getProcessCode();
|
if (this$processCode == null) {
|
if (other$processCode != null) {
|
return false;
|
}
|
} else if (!this$processCode.equals(other$processCode)) {
|
return false;
|
}
|
Object this$workstationIds = getWorkstationIds();
|
Object other$workstationIds = other.getWorkstationIds();
|
if (this$workstationIds == null) {
|
if (other$workstationIds != null) {
|
return false;
|
}
|
} else if (!this$workstationIds.equals(other$workstationIds)) {
|
return false;
|
}
|
Object this$workstationNames = getWorkstationNames();
|
Object other$workstationNames = other.getWorkstationNames();
|
return this$workstationNames == null ? other$workstationNames == null : this$workstationNames.equals(other$workstationNames);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof PlanProcessDTO;
|
}
|
|
public int hashCode() {
|
Object $planProcessId = getPlanProcessId();
|
int result = (1 * 59) + ($planProcessId == null ? 43 : $planProcessId.hashCode());
|
Object $processCode = getProcessCode();
|
int result2 = (result * 59) + ($processCode == null ? 43 : $processCode.hashCode());
|
Object $workstationIds = getWorkstationIds();
|
int result3 = (result2 * 59) + ($workstationIds == null ? 43 : $workstationIds.hashCode());
|
Object $workstationNames = getWorkstationNames();
|
return (result3 * 59) + ($workstationNames == null ? 43 : $workstationNames.hashCode());
|
}
|
|
public String toString() {
|
return "PlanProcessDTO(planProcessId=" + getPlanProcessId() + ", processCode=" + getProcessCode() + ", workstationIds=" + getWorkstationIds() + ", workstationNames=" + getWorkstationNames() + ")";
|
}
|
|
public Long getPlanProcessId() {
|
return this.planProcessId;
|
}
|
|
public String getProcessCode() {
|
return this.processCode;
|
}
|
|
public String getWorkstationIds() {
|
return this.workstationIds;
|
}
|
|
public String getWorkstationNames() {
|
return this.workstationNames;
|
}
|
}
|