package com.qianwen.smartman.modules.trace.vo;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import java.io.Serializable;
|
import java.util.List;
|
|
@ApiModel(value = "TraceFlowSettingsVo对象", description = "流程维护")
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/trace/vo/TraceFlowSettingsWorkstationVO.class */
|
public class TraceFlowSettingsWorkstationVO implements Serializable {
|
@ApiModelProperty("流程编号")
|
private TraceFlowSettingsVO traceFlowSettingsVO;
|
@ApiModelProperty("追溯关联工位")
|
List<TraceRelatedWorkstationVO> traceRelatedWorkstationVOList;
|
|
public void setTraceFlowSettingsVO(final TraceFlowSettingsVO traceFlowSettingsVO) {
|
this.traceFlowSettingsVO = traceFlowSettingsVO;
|
}
|
|
public void setTraceRelatedWorkstationVOList(final List<TraceRelatedWorkstationVO> traceRelatedWorkstationVOList) {
|
this.traceRelatedWorkstationVOList = traceRelatedWorkstationVOList;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof TraceFlowSettingsWorkstationVO) {
|
TraceFlowSettingsWorkstationVO other = (TraceFlowSettingsWorkstationVO) o;
|
if (other.canEqual(this)) {
|
Object this$traceFlowSettingsVO = getTraceFlowSettingsVO();
|
Object other$traceFlowSettingsVO = other.getTraceFlowSettingsVO();
|
if (this$traceFlowSettingsVO == null) {
|
if (other$traceFlowSettingsVO != null) {
|
return false;
|
}
|
} else if (!this$traceFlowSettingsVO.equals(other$traceFlowSettingsVO)) {
|
return false;
|
}
|
Object this$traceRelatedWorkstationVOList = getTraceRelatedWorkstationVOList();
|
Object other$traceRelatedWorkstationVOList = other.getTraceRelatedWorkstationVOList();
|
return this$traceRelatedWorkstationVOList == null ? other$traceRelatedWorkstationVOList == null : this$traceRelatedWorkstationVOList.equals(other$traceRelatedWorkstationVOList);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof TraceFlowSettingsWorkstationVO;
|
}
|
|
public int hashCode() {
|
Object $traceFlowSettingsVO = getTraceFlowSettingsVO();
|
int result = (1 * 59) + ($traceFlowSettingsVO == null ? 43 : $traceFlowSettingsVO.hashCode());
|
Object $traceRelatedWorkstationVOList = getTraceRelatedWorkstationVOList();
|
return (result * 59) + ($traceRelatedWorkstationVOList == null ? 43 : $traceRelatedWorkstationVOList.hashCode());
|
}
|
|
public String toString() {
|
return "TraceFlowSettingsWorkstationVO(traceFlowSettingsVO=" + getTraceFlowSettingsVO() + ", traceRelatedWorkstationVOList=" + getTraceRelatedWorkstationVOList() + ")";
|
}
|
|
public TraceFlowSettingsVO getTraceFlowSettingsVO() {
|
return this.traceFlowSettingsVO;
|
}
|
|
public List<TraceRelatedWorkstationVO> getTraceRelatedWorkstationVOList() {
|
return this.traceRelatedWorkstationVOList;
|
}
|
}
|