Commit 3283751a by yuwei

项目初始化

parent 40183ee2
......@@ -50,13 +50,6 @@ public class DataApiDto implements Serializable {
@ApiModelProperty(value = "限流配置")
@Valid
private RateLimit rateLimit;
// @ApiModelProperty(value = "是否限流:0:否,1:是")
// @NotNull(message = "是否限流不能为空", groups = {ValidationGroups.Insert.class, ValidationGroups.Update.class})
// private String rateLimit;
// @ApiModelProperty(value = "请求次数默认5次")
// private Integer times = 5;
// @ApiModelProperty(value = "请求时间范围默认60秒")
// private Integer seconds = 60;
@ApiModelProperty(value = "执行配置")
@Valid
private ExecuteConfig executeConfig;
......
......@@ -60,21 +60,6 @@ public class DataApiEntity extends DataScopeBaseEntity {
*/
private String deny;
// /**
// * 是否限流:0:否,1:是
// */
// private String rateLimit;
//
// /**
// * 请求次数
// */
// private Integer times;
//
// /**
// * 请求时间范围单位秒
// */
// private Integer seconds;
/**
* 限流配置
*/
......
......@@ -35,9 +35,6 @@ public class DataApiVo implements Serializable {
private String reqMethod;
private String deny;
private String resType;
// private String rateLimit;
// private Integer times;
// private Integer seconds;
private RateLimit rateLimit;
private ExecuteConfig executeConfig;
private List<ReqParam> reqParams;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment