Browse Source

删除无用类

reghao 5 tháng trước cách đây
mục cha
commit
9c9b82bd48

+ 0 - 30
web/src/main/java/cn/reghao/bnt/web/console/model/constant/BuildStatus.java

@@ -1,30 +0,0 @@
-package cn.reghao.bnt.web.console.model.constant;
-
-/**
- * 构建状态
- *
- * @author reghao
- * @date 2021-11-08 16:35:42
- */
-public enum BuildStatus {
-    neverBuild(1, "尚未构建"),
-    onBuilding(2, "正在构建"),
-    buildSuccess(3, "构建成功"),
-    buildFail(4, "构建失败");
-
-    private final Integer code;
-    private final String desc;
-
-    BuildStatus(Integer code, String desc) {
-        this.code = code;
-        this.desc = desc;
-    }
-
-    public Integer getCode() {
-        return code;
-    }
-
-    public String getDesc() {
-        return desc;
-    }
-}

+ 0 - 15
web/src/main/java/cn/reghao/bnt/web/console/model/constant/EncryptType.java

@@ -1,15 +0,0 @@
-package cn.reghao.bnt.web.console.model.constant;
-
-/**
- * 磁盘加密类型
- *
- * @author reghao
- * @date 2024-10-18 09:51:29
- */
-public enum EncryptType {
-    luks, veracrypt;
-
-    public String getName() {
-        return this.name();
-    }
-}

+ 0 - 15
web/src/main/java/cn/reghao/bnt/web/console/model/constant/build/CompileType.java

@@ -1,15 +0,0 @@
-package cn.reghao.bnt.web.console.model.constant.build;
-
-/**
- * 编译方式类型
- *
- * @author reghao
- * @date 2019-10-18 14:31:29
- */
-public enum CompileType {
-    none, shell, maven;
-
-    public String getName() {
-        return this.name();
-    }
-}

+ 0 - 13
web/src/main/java/cn/reghao/bnt/web/console/model/constant/build/RepoAuthType.java

@@ -1,13 +0,0 @@
-package cn.reghao.bnt.web.console.model.constant.build;
-
-/**
- * @author reghao
- * @date 2021-02-05 18:50:01
- */
-public enum RepoAuthType {
-    http, ssh, none;
-
-    public String getName() {
-        return this.name();
-    }
-}

+ 0 - 13
web/src/main/java/cn/reghao/bnt/web/console/model/constant/build/RepoType.java

@@ -1,13 +0,0 @@
-package cn.reghao.bnt.web.console.model.constant.build;
-
-/**
- * @author reghao
- * @date 2021-02-05 22:50:41
- */
-public enum RepoType {
-    git;
-
-    public String getName() {
-        return this.name();
-    }
-}