Browse Source

升级版本号至1.0.4;修改core-solar核心对象结构

Signed-off-by: luoshi <luoshi@qmth.com.cn>
luoshi 2 years ago
parent
commit
c5956ee828

+ 1 - 1
core-cache/pom.xml

@@ -6,7 +6,7 @@
     <parent>
         <artifactId>qmth-boot</artifactId>
         <groupId>com.qmth.boot</groupId>
-        <version>1.0.3</version>
+        <version>1.0.4</version>
     </parent>
     <artifactId>core-cache</artifactId>
     <name>core-uid</name>

+ 1 - 1
core-concurrent/pom.xml

@@ -6,7 +6,7 @@
     <parent>
         <artifactId>qmth-boot</artifactId>
         <groupId>com.qmth.boot</groupId>
-        <version>1.0.3</version>
+        <version>1.0.4</version>
     </parent>
     <artifactId>core-concurrent</artifactId>
     <name>core-concurrent</name>

+ 1 - 1
core-fss/pom.xml

@@ -6,7 +6,7 @@
     <parent>
         <artifactId>qmth-boot</artifactId>
         <groupId>com.qmth.boot</groupId>
-        <version>1.0.3</version>
+        <version>1.0.4</version>
     </parent>
     <artifactId>core-fss</artifactId>
     <name>core-fss</name>

+ 1 - 1
core-logging/pom.xml

@@ -6,7 +6,7 @@
     <parent>
         <artifactId>qmth-boot</artifactId>
         <groupId>com.qmth.boot</groupId>
-        <version>1.0.3</version>
+        <version>1.0.4</version>
     </parent>
     <artifactId>core-logging</artifactId>
     <name>core-logging</name>

+ 1 - 1
core-metrics/pom.xml

@@ -6,7 +6,7 @@
     <parent>
         <groupId>com.qmth.boot</groupId>
         <artifactId>qmth-boot</artifactId>
-        <version>1.0.3</version>
+        <version>1.0.4</version>
     </parent>
     <artifactId>core-metrics</artifactId>
     <name>core-metrics</name>

+ 1 - 1
core-models/pom.xml

@@ -6,7 +6,7 @@
     <parent>
         <artifactId>qmth-boot</artifactId>
         <groupId>com.qmth.boot</groupId>
-        <version>1.0.3</version>
+        <version>1.0.4</version>
     </parent>
     <artifactId>core-models</artifactId>
     <name>core-models</name>

+ 1 - 1
core-rate-limit/pom.xml

@@ -6,7 +6,7 @@
     <parent>
         <groupId>com.qmth.boot</groupId>
         <artifactId>qmth-boot</artifactId>
-        <version>1.0.3</version>
+        <version>1.0.4</version>
     </parent>
     <artifactId>core-rate-limit</artifactId>
     <name>core-rate-limit</name>

+ 1 - 1
core-retrofit/pom.xml

@@ -6,7 +6,7 @@
     <parent>
         <artifactId>qmth-boot</artifactId>
         <groupId>com.qmth.boot</groupId>
-        <version>1.0.3</version>
+        <version>1.0.4</version>
     </parent>
     <artifactId>core-retrofit</artifactId>
     <name>core-retrofit</name>

+ 1 - 1
core-schedule/pom.xml

@@ -6,7 +6,7 @@
     <parent>
         <artifactId>qmth-boot</artifactId>
         <groupId>com.qmth.boot</groupId>
-        <version>1.0.3</version>
+        <version>1.0.4</version>
     </parent>
     <artifactId>core-schedule</artifactId>
     <name>core-schedule</name>

+ 1 - 1
core-security/pom.xml

@@ -6,7 +6,7 @@
     <parent>
         <groupId>com.qmth.boot</groupId>
         <artifactId>qmth-boot</artifactId>
-        <version>1.0.3</version>
+        <version>1.0.4</version>
     </parent>
     <artifactId>core-security</artifactId>
     <name>core-security</name>

+ 1 - 1
core-sms/pom.xml

@@ -6,7 +6,7 @@
     <parent>
         <artifactId>qmth-boot</artifactId>
         <groupId>com.qmth.boot</groupId>
-        <version>1.0.3</version>
+        <version>1.0.4</version>
     </parent>
     <artifactId>core-sms</artifactId>
     <name>core-sms</name>

+ 1 - 1
core-solar/pom.xml

@@ -6,7 +6,7 @@
     <parent>
         <artifactId>qmth-boot</artifactId>
         <groupId>com.qmth.boot</groupId>
-        <version>1.0.3</version>
+        <version>1.0.4</version>
     </parent>
     <artifactId>core-solar</artifactId>
     <name>core-solar</name>

+ 0 - 28
core-solar/src/main/java/com/qmth/boot/core/solar/enums/AppType.java

@@ -1,28 +0,0 @@
-package com.qmth.boot.core.solar.enums;
-
-/**
- * 应用分类枚举
- */
-public enum AppType {
-
-    MARKINGCLOUD("云阅卷"),
-    EXAM_CLOUD("考试云平台"),
-    PRINT_CLOUD("印刷平台"),
-    TEACH_CLOUD("教务处平台"),
-    ONLINE_EXAM("在线考试平台"),
-    EXAM_MONITOR("智能监考平台"),
-    ITEM_BANK("题库系统"),
-    SCORE_ANALYSIS("成绩分析系统"),
-    COMMON("公共服务");
-
-    private String name;
-
-    AppType(String name) {
-        this.name = name;
-    }
-
-    public String getName() {
-        return name;
-    }
-
-}

+ 0 - 20
core-solar/src/main/java/com/qmth/boot/core/solar/enums/DeployMode.java

@@ -1,20 +0,0 @@
-package com.qmth.boot.core.solar.enums;
-
-/**
- * 应用部署类型枚举
- */
-public enum DeployMode {
-
-    CLOUD("云端"), LOCAL("本地");
-
-    private String name;
-
-    DeployMode(String name) {
-        this.name = name;
-    }
-
-    public String getName() {
-        return name;
-    }
-
-}

+ 9 - 11
core-solar/src/main/java/com/qmth/boot/core/solar/model/AppInfo.java

@@ -1,7 +1,5 @@
 package com.qmth.boot.core.solar.model;
 
-import com.qmth.boot.core.solar.enums.AppType;
-
 /**
  * 应用基础信息
  */
@@ -11,7 +9,7 @@ public class AppInfo {
 
     private String name;
 
-    private AppType type;
+    private String code;
 
     private AppControl control;
 
@@ -27,20 +25,20 @@ public class AppInfo {
         this.id = id;
     }
 
-    public String getName() {
-        return name;
+    public String getCode() {
+        return code;
     }
 
-    public void setName(String name) {
-        this.name = name;
+    public void setCode(String code) {
+        this.code = code;
     }
 
-    public AppType getType() {
-        return type;
+    public String getName() {
+        return name;
     }
 
-    public void setType(AppType type) {
-        this.type = type;
+    public void setName(String name) {
+        this.name = name;
     }
 
     public AppControl getControl() {

+ 1 - 1
core-uid/pom.xml

@@ -6,7 +6,7 @@
     <parent>
         <groupId>com.qmth.boot</groupId>
         <artifactId>qmth-boot</artifactId>
-        <version>1.0.3</version>
+        <version>1.0.4</version>
     </parent>
     <artifactId>core-uid</artifactId>
     <name>core-uid</name>

+ 1 - 1
data-mybatis-plus/pom.xml

@@ -6,7 +6,7 @@
     <parent>
         <artifactId>qmth-boot</artifactId>
         <groupId>com.qmth.boot</groupId>
-        <version>1.0.3</version>
+        <version>1.0.4</version>
     </parent>
     <artifactId>data-mybatis-plus</artifactId>
     <name>data-mybatis-plus</name>

+ 1 - 1
data-redis/pom.xml

@@ -6,7 +6,7 @@
     <parent>
         <artifactId>qmth-boot</artifactId>
         <groupId>com.qmth.boot</groupId>
-        <version>1.0.3</version>
+        <version>1.0.4</version>
     </parent>
     <artifactId>data-redis</artifactId>
     <name>data-redis</name>

+ 1 - 1
pom.xml

@@ -7,7 +7,7 @@
     <groupId>com.qmth.boot</groupId>
     <artifactId>qmth-boot</artifactId>
     <packaging>pom</packaging>
-    <version>1.0.3</version>
+    <version>1.0.4</version>
 
     <modules>
         <module>starter-api</module>

+ 1 - 1
starter-api/pom.xml

@@ -6,7 +6,7 @@
     <parent>
         <groupId>com.qmth.boot</groupId>
         <artifactId>qmth-boot</artifactId>
-        <version>1.0.3</version>
+        <version>1.0.4</version>
     </parent>
     <artifactId>starter-api</artifactId>
     <name>starter-api</name>

+ 1 - 1
tools-common/pom.xml

@@ -6,7 +6,7 @@
     <parent>
         <groupId>com.qmth.boot</groupId>
         <artifactId>qmth-boot</artifactId>
-        <version>1.0.3</version>
+        <version>1.0.4</version>
     </parent>
     <artifactId>tools-common</artifactId>
     <name>tools-common</name>

+ 1 - 1
tools-device/pom.xml

@@ -6,7 +6,7 @@
     <parent>
         <groupId>com.qmth.boot</groupId>
         <artifactId>qmth-boot</artifactId>
-        <version>1.0.3</version>
+        <version>1.0.4</version>
     </parent>
     <artifactId>tools-device</artifactId>
     <name>tools-device</name>

+ 1 - 1
tools-poi/pom.xml

@@ -6,7 +6,7 @@
     <parent>
         <artifactId>qmth-boot</artifactId>
         <groupId>com.qmth.boot</groupId>
-        <version>1.0.3</version>
+        <version>1.0.4</version>
     </parent>
     <artifactId>tools-poi</artifactId>
     <name>tools-poi</name>

+ 1 - 1
tools-signature/pom.xml

@@ -6,7 +6,7 @@
     <parent>
         <groupId>com.qmth.boot</groupId>
         <artifactId>qmth-boot</artifactId>
-        <version>1.0.3</version>
+        <version>1.0.4</version>
     </parent>
     <artifactId>tools-signature</artifactId>
     <name>tools-signature</name>