package com.qianwen.smartman.modules.cps.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/vo/WorkstationDataTypeExecParamVO.class */
|
public class WorkstationDataTypeExecParamVO {
|
@ApiModelProperty("显示在前端的添加的标题")
|
private String label;
|
@ApiModelProperty("传到后台的参数名称")
|
private String name;
|
@ApiModelProperty("数据类型,需要根据数据类型渲染参数")
|
private String type;
|
|
public void setLabel(final String label) {
|
this.label = label;
|
}
|
|
public void setName(final String name) {
|
this.name = name;
|
}
|
|
public void setType(final String type) {
|
this.type = type;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof WorkstationDataTypeExecParamVO) {
|
WorkstationDataTypeExecParamVO other = (WorkstationDataTypeExecParamVO) o;
|
if (other.canEqual(this)) {
|
Object this$label = getLabel();
|
Object other$label = other.getLabel();
|
if (this$label == null) {
|
if (other$label != null) {
|
return false;
|
}
|
} else if (!this$label.equals(other$label)) {
|
return false;
|
}
|
Object this$name = getName();
|
Object other$name = other.getName();
|
if (this$name == null) {
|
if (other$name != null) {
|
return false;
|
}
|
} else if (!this$name.equals(other$name)) {
|
return false;
|
}
|
Object this$type = getType();
|
Object other$type = other.getType();
|
return this$type == null ? other$type == null : this$type.equals(other$type);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof WorkstationDataTypeExecParamVO;
|
}
|
|
public int hashCode() {
|
Object $label = getLabel();
|
int result = (1 * 59) + ($label == null ? 43 : $label.hashCode());
|
Object $name = getName();
|
int result2 = (result * 59) + ($name == null ? 43 : $name.hashCode());
|
Object $type = getType();
|
return (result2 * 59) + ($type == null ? 43 : $type.hashCode());
|
}
|
|
public String toString() {
|
return "WorkstationDataTypeExecParamVO(label=" + getLabel() + ", name=" + getName() + ", type=" + getType() + ")";
|
}
|
|
public WorkstationDataTypeExecParamVO(final String label, final String name, final String type) {
|
this.label = label;
|
this.name = name;
|
this.type = type;
|
}
|
|
public WorkstationDataTypeExecParamVO() {
|
}
|
|
public String getLabel() {
|
return this.label;
|
}
|
|
public String getName() {
|
return this.name;
|
}
|
|
public String getType() {
|
return this.type;
|
}
|
}
|