|
|
@@ -37,14 +37,13 @@ public class InterfaceParam implements Serializable {
|
|
|
private String description;
|
|
|
|
|
|
/**
|
|
|
- * 参数值
|
|
|
+ * 数据类型
|
|
|
*/
|
|
|
- private String value;
|
|
|
-
|
|
|
+ private String paramType;
|
|
|
/**
|
|
|
* 参数类型(0:query,1:body)
|
|
|
*/
|
|
|
- private Integer paramType;
|
|
|
+ private Integer type;
|
|
|
|
|
|
/**
|
|
|
* 创建人
|
|
|
@@ -85,7 +84,7 @@ public class InterfaceParam implements Serializable {
|
|
|
&& (this.getInterfaceInfoId() == null ? other.getInterfaceInfoId() == null : this.getInterfaceInfoId().equals(other.getInterfaceInfoId()))
|
|
|
&& (this.getName() == null ? other.getName() == null : this.getName().equals(other.getName()))
|
|
|
&& (this.getDescription() == null ? other.getDescription() == null : this.getDescription().equals(other.getDescription()))
|
|
|
- && (this.getValue() == null ? other.getValue() == null : this.getValue().equals(other.getValue()))
|
|
|
+ && (this.getType() == null ? other.getType() == null : this.getType().equals(other.getType()))
|
|
|
&& (this.getParamType() == null ? other.getParamType() == null : this.getParamType().equals(other.getParamType()))
|
|
|
&& (this.getUserId() == null ? other.getUserId() == null : this.getUserId().equals(other.getUserId()))
|
|
|
&& (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime()))
|
|
|
@@ -101,7 +100,7 @@ public class InterfaceParam implements Serializable {
|
|
|
result = prime * result + ((getInterfaceInfoId() == null) ? 0 : getInterfaceInfoId().hashCode());
|
|
|
result = prime * result + ((getName() == null) ? 0 : getName().hashCode());
|
|
|
result = prime * result + ((getDescription() == null) ? 0 : getDescription().hashCode());
|
|
|
- result = prime * result + ((getValue() == null) ? 0 : getValue().hashCode());
|
|
|
+ result = prime * result + ((getType() == null) ? 0 : getType().hashCode());
|
|
|
result = prime * result + ((getParamType() == null) ? 0 : getParamType().hashCode());
|
|
|
result = prime * result + ((getUserId() == null) ? 0 : getUserId().hashCode());
|
|
|
result = prime * result + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode());
|
|
|
@@ -120,7 +119,7 @@ public class InterfaceParam implements Serializable {
|
|
|
sb.append(", interfaceInfoId=").append(interfaceInfoId);
|
|
|
sb.append(", name=").append(name);
|
|
|
sb.append(", description=").append(description);
|
|
|
- sb.append(", value=").append(value);
|
|
|
+ sb.append(", type=").append(type);
|
|
|
sb.append(", paramType=").append(paramType);
|
|
|
sb.append(", userId=").append(userId);
|
|
|
sb.append(", createTime=").append(createTime);
|