资源池

This commit is contained in:
W23123 2020-03-24 16:07:19 +08:00
parent 5dff901211
commit 9532e1adc0
2 changed files with 1 additions and 8 deletions

View File

@ -5,7 +5,6 @@ public class KubernetesDTO {
private String masterUrl; private String masterUrl;
private String token; private String token;
private Integer maxConcurrency; private Integer maxConcurrency;
private Boolean validate;
public String getMasterUrl() { public String getMasterUrl() {
return masterUrl; return masterUrl;
@ -31,11 +30,4 @@ public class KubernetesDTO {
this.maxConcurrency = maxConcurrency; this.maxConcurrency = maxConcurrency;
} }
public Boolean getValidate() {
return validate;
}
public void setValidate(Boolean validate) {
this.validate = validate;
}
} }

View File

@ -3,6 +3,7 @@ package io.metersphere.service;
import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSON;
import io.metersphere.base.domain.TestResource; import io.metersphere.base.domain.TestResource;
import io.metersphere.base.domain.TestResourceExample; import io.metersphere.base.domain.TestResourceExample;
import io.metersphere.base.domain.TestResourcePool;
import io.metersphere.base.mapper.TestResourceMapper; import io.metersphere.base.mapper.TestResourceMapper;
import io.metersphere.base.mapper.TestResourcePoolMapper; import io.metersphere.base.mapper.TestResourcePoolMapper;
import io.metersphere.base.mapper.ext.ExtTestReourcePoolMapper; import io.metersphere.base.mapper.ext.ExtTestReourcePoolMapper;