package com.qianwen.smartman.modules.mdc.vo;
|
|
import java.io.Serializable;
|
import java.util.List;
|
import com.qianwen.smartman.modules.mdc.dto.ProParamResDTO;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/vo/ProcessParameterResVO.class */
|
public class ProcessParameterResVO implements Serializable {
|
private static final long serialVersionUID = 6050903607833393545L;
|
private List<ProParamResDTO> res;
|
|
public void setRes(final List<ProParamResDTO> res) {
|
this.res = res;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof ProcessParameterResVO) {
|
ProcessParameterResVO other = (ProcessParameterResVO) o;
|
if (other.canEqual(this)) {
|
Object this$res = getRes();
|
Object other$res = other.getRes();
|
return this$res == null ? other$res == null : this$res.equals(other$res);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof ProcessParameterResVO;
|
}
|
|
public int hashCode() {
|
Object $res = getRes();
|
int result = (1 * 59) + ($res == null ? 43 : $res.hashCode());
|
return result;
|
}
|
|
public String toString() {
|
return "ProcessParameterResVO(res=" + getRes() + ")";
|
}
|
|
public List<ProParamResDTO> getRes() {
|
return this.res;
|
}
|
}
|