|
|
|
@ -3,6 +3,7 @@ package cn.estsh.i3plus.pojo.bsp.server.bean.po;
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
|
|
import lombok.*;
|
|
|
|
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
@ -47,6 +48,12 @@ public class MethodLevelParamInfo extends BaseBean implements Serializable {
|
|
|
|
|
@Column(name = "METHOD_ID")
|
|
|
|
|
@ApiModelProperty("对应的当前层级的方法Id")
|
|
|
|
|
private Long methodId;
|
|
|
|
|
/**
|
|
|
|
|
* 对应方法的名字,todo 临时字段 2021/8/1
|
|
|
|
|
*/
|
|
|
|
|
@Column(name = "METHOD_NAME")
|
|
|
|
|
@ApiModelProperty("对应的当前层级的方法的名字")
|
|
|
|
|
private String methodName;
|
|
|
|
|
|
|
|
|
|
@Column(name = "METHOD_GROUP_ID")
|
|
|
|
|
@ApiModelProperty("对应方法组的Id")
|
|
|
|
@ -54,13 +61,20 @@ public class MethodLevelParamInfo extends BaseBean implements Serializable {
|
|
|
|
|
/**
|
|
|
|
|
* 原有方法的入参是否必须,做验证
|
|
|
|
|
*/
|
|
|
|
|
@Column(name = "require")
|
|
|
|
|
@Column(name = "REQUIRE_TYPE",columnDefinition = "int")
|
|
|
|
|
@ApiModelProperty("原有方法的入参是否必须,做调用前验证")
|
|
|
|
|
private Integer require;
|
|
|
|
|
private Integer requireType;
|
|
|
|
|
/**
|
|
|
|
|
* 参数类型,验证是否正确
|
|
|
|
|
*/
|
|
|
|
|
@Column(name = "type")
|
|
|
|
|
@Column(name = "TYPE")
|
|
|
|
|
@ApiModelProperty("参数类型验证")
|
|
|
|
|
private String type;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 层级的入参
|
|
|
|
|
*/
|
|
|
|
|
@Column(name = "LEVEL")
|
|
|
|
|
@ApiModelProperty("层级的入参")
|
|
|
|
|
private String level;
|
|
|
|
|
}
|
|
|
|
|