Просмотр исходного кода

常量接口修改为常量类

Sxile лет назад: 5
Родитель
Сommit
6eda1dee45

+ 1 - 1
ruoyi-common/ruoyi-common-core/src/main/java/com/ruoyi/common/core/constant/HttpStatus.java

@@ -5,7 +5,7 @@ package com.ruoyi.common.core.constant;
5 5
  * 
6 6
  * @author ruoyi
7 7
  */
8
-public interface HttpStatus
8
+public class HttpStatus
9 9
 {
10 10
     /**
11 11
      * 操作成功

+ 1 - 1
ruoyi-common/ruoyi-common-core/src/main/java/com/ruoyi/common/core/constant/ScheduleConstants.java

@@ -5,7 +5,7 @@ package com.ruoyi.common.core.constant;
5 5
  * 
6 6
  * @author ruoyi
7 7
  */
8
-public interface ScheduleConstants
8
+public class ScheduleConstants
9 9
 {
10 10
     public static final String TASK_CLASS_NAME = "TASK_CLASS_NAME";
11 11