Merge remote-tracking branch 'remotes/origin/test'

yun-zuoyi
wei.peng 6 years ago
commit f6b49bf31a

@ -10,6 +10,7 @@ import java.sql.SQLException;
* @CreateDate : 2019-06-11 16:12 * @CreateDate : 2019-06-11 16:12
* @Modify: * @Modify:
**/ **/
@FunctionalInterface
public interface IResultSetCall<T> { public interface IResultSetCall<T> {
/** /**

@ -62,6 +62,8 @@ public class SuitCoreModel {
*/ */
private BsSuitCase bsSuitCase; private BsSuitCase bsSuitCase;
private Object bsSuitCaseDetail;
/** /**
* *
*/ */

@ -10,6 +10,8 @@ import org.hibernate.annotations.DynamicUpdate;
import javax.persistence.Column; import javax.persistence.Column;
import javax.persistence.Entity; import javax.persistence.Entity;
import javax.persistence.Table; import javax.persistence.Table;
import javax.persistence.Transient;
import java.util.List;
/** /**
* @Description : socket * @Description : socket
@ -34,6 +36,5 @@ public class BsSocketSuitCase extends BaseBean {
@Column(name = "SOCKET_MODE_ID") @Column(name = "SOCKET_MODE_ID")
@ApiParam(value = "socket模式(枚举,服务端,客户端)") @ApiParam(value = "socket模式(枚举,服务端,客户端)")
private Integer socketModeId; private Integer socketModeId;
} }

@ -51,9 +51,9 @@ public class BsSuitCaseParam extends BaseBean {
@ApiParam(value = "参数值类型") @ApiParam(value = "参数值类型")
private Integer paramValTypeId; private Integer paramValTypeId;
@Column(name = "PARAM_DEFAULT_VAL") @Column(name = "PARAM_DEFAULT_VALUE")
@ApiParam(value = "参数默认值") @ApiParam(value = "参数默认值")
private String paramDefaultVal; private String paramDefaultValue;
@Column(name = "PARAM_DESCRIPTION") @Column(name = "PARAM_DESCRIPTION")
@ApiParam(value = "参数描述") @ApiParam(value = "参数描述")

Loading…
Cancel
Save