|
|
|
@ -13,10 +13,12 @@ import lombok.EqualsAndHashCode;
|
|
|
|
|
import org.apache.commons.lang3.math.NumberUtils;
|
|
|
|
|
import org.hibernate.annotations.DynamicInsert;
|
|
|
|
|
import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
import javax.persistence.Table;
|
|
|
|
|
import javax.persistence.Transient;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @Description : 适配器出入参
|
|
|
|
@ -53,6 +55,10 @@ public class BsSuitCaseParam extends BaseBean {
|
|
|
|
|
@ApiParam(value = "参数名称)")
|
|
|
|
|
private String paramName;
|
|
|
|
|
|
|
|
|
|
@Column(name = "PARENT_PARAM_Id")
|
|
|
|
|
@ApiParam(value = "上级参数id")
|
|
|
|
|
private String parentParamId;
|
|
|
|
|
|
|
|
|
|
@Column(name = "PARENT_PARAM_NAME")
|
|
|
|
|
@ApiParam(value = "上级参数名称)")
|
|
|
|
|
private String parentParamName;
|
|
|
|
@ -80,7 +86,18 @@ public class BsSuitCaseParam extends BaseBean {
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "参数值")
|
|
|
|
|
private String paramValue;
|
|
|
|
|
private Object paramValue;
|
|
|
|
|
|
|
|
|
|
public String getParamValueStr() {
|
|
|
|
|
if (paramValue == null) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
return paramValue.toString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "子级参数")
|
|
|
|
|
private List<BsSuitCaseParam> bsSuitCaseParamList;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|