mirror of
https://gitee.com/anji-plus/report.git
synced 2026-04-01 10:08:36 +08:00
添加数据集类型http/sql
This commit is contained in:
@@ -29,6 +29,10 @@ public class DataSetDto extends GaeaBaseDTO implements Serializable {
|
||||
/** 数据集描述 */
|
||||
private String setDesc;
|
||||
|
||||
/** 数据集类型 */
|
||||
private String setType;
|
||||
|
||||
|
||||
/** 数据源编码 */
|
||||
private String sourceCode;
|
||||
|
||||
|
||||
@@ -27,4 +27,8 @@ public class DataSetParam extends PageParam implements Serializable{
|
||||
/** 数据源编码 */
|
||||
@Query(QueryEnum.EQ)
|
||||
private String sourceCode;
|
||||
|
||||
/** 数据集类型 */
|
||||
@Query(QueryEnum.EQ)
|
||||
private String setType;
|
||||
}
|
||||
|
||||
@@ -19,12 +19,14 @@ import java.util.List;
|
||||
public class DataSetTestTransformParam implements Serializable{
|
||||
|
||||
/** 数据源编码 */
|
||||
@NotBlank(message = "sourceCode not empty")
|
||||
private String sourceCode;
|
||||
|
||||
/** 动态查询sql或者接口中的请求体 */
|
||||
private String dynSentence;
|
||||
|
||||
/** 数据集类型 */
|
||||
private String setType;
|
||||
|
||||
/** 请求参数集合 */
|
||||
private List<DataSetParamDto> dataSetParamDtoList;
|
||||
|
||||
|
||||
@@ -26,6 +26,9 @@ public class DataSet extends GaeaBaseEntity {
|
||||
@ApiModelProperty(value = "数据集描述")
|
||||
private String setDesc;
|
||||
|
||||
@ApiModelProperty(value = "数据集类型")
|
||||
private String setType;
|
||||
|
||||
@ApiModelProperty(value = "数据源编码")
|
||||
private String sourceCode;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user