소스 검색

修改DeployVO默认开放字段

luoshi 2 년 전
부모
커밋
4cdac829e9
1개의 변경된 파일0개의 추가작업 그리고 22개의 파일을 삭제
  1. 0 22
      src/main/java/com/qmth/ops/api/vo/DeployVO.java

+ 0 - 22
src/main/java/com/qmth/ops/api/vo/DeployVO.java

@@ -17,10 +17,6 @@ public class DeployVO {
 
     private DeployMode mode;
 
-    private String accessKey;
-
-    private String accessSecret;
-
     private AppControl control;
 
     private Set<String> ipAllow;
@@ -34,8 +30,6 @@ public class DeployVO {
         this.app = new AppVO(appService.getById(deploy.getAppId()));
         this.name = deploy.getName();
         this.mode = deploy.getMode();
-        this.accessKey = deploy.getAccessKey();
-        this.accessSecret = deploy.getAccessSecret();
         this.control = deploy.getControl();
         this.ipAllow = deploy.getIpAllow();
         this.createTime = deploy.getCreateTime();
@@ -74,22 +68,6 @@ public class DeployVO {
         this.mode = mode;
     }
 
-    public String getAccessKey() {
-        return accessKey;
-    }
-
-    public void setAccessKey(String accessKey) {
-        this.accessKey = accessKey;
-    }
-
-    public String getAccessSecret() {
-        return accessSecret;
-    }
-
-    public void setAccessSecret(String accessSecret) {
-        this.accessSecret = accessSecret;
-    }
-
     public AppControl getControl() {
         return control;
     }