diff --git a/jero-boot/jero-boot-base/jero-boot-base-core/src/main/java/com/jero/common/constant/CommonConstant.java b/jero-boot/jero-boot-base/jero-boot-base-core/src/main/java/com/jero/common/constant/CommonConstant.java index bac966c7..7be7b94f 100644 --- a/jero-boot/jero-boot-base/jero-boot-base-core/src/main/java/com/jero/common/constant/CommonConstant.java +++ b/jero-boot/jero-boot-base/jero-boot-base-core/src/main/java/com/jero/common/constant/CommonConstant.java @@ -1,6 +1,10 @@ package com.jero.common.constant; -public interface CommonConstant { +public class CommonConstant { + + private CommonConstant(){ + + } /** * 正常状态 @@ -26,7 +30,7 @@ public interface CommonConstant { * 系统日志类型: 登录 */ public static final int LOG_TYPE_1 = 1; - + /** * 系统日志类型: 操作 */ @@ -36,38 +40,38 @@ public interface CommonConstant { * 操作日志类型: 查询 */ public static final int OPERATE_TYPE_1 = 1; - + /** * 操作日志类型: 添加 */ public static final int OPERATE_TYPE_2 = 2; - + /** * 操作日志类型: 更新 */ public static final int OPERATE_TYPE_3 = 3; - + /** * 操作日志类型: 删除 */ public static final int OPERATE_TYPE_4 = 4; - + /** * 操作日志类型: 倒入 */ public static final int OPERATE_TYPE_5 = 5; - + /** * 操作日志类型: 导出 */ public static final int OPERATE_TYPE_6 = 6; - - + + /** {@code 500 Server Error} (HTTP/1.0 - RFC 1945) */ public static final Integer SC_INTERNAL_SERVER_ERROR_500 = 500; /** {@code 200 OK} (HTTP/1.0 - RFC 1945) */ public static final Integer SC_OK_200 = 200; - + /**访问权限认证未通过 510*/ public static final Integer SC_JERO_NO_AUTHZ=510; @@ -77,52 +81,52 @@ public interface CommonConstant { public static final String PREFIX_USER_TOKEN = "prefix_user_token_"; /** Token缓存时间:3600秒即一小时 */ public static final int TOKEN_EXPIRE_TIME = 3600; - + /** * 0:一级菜单 */ public static final Integer MENU_TYPE_0 = 0; /** - * 1:子菜单 + * 1:子菜单 */ public static final Integer MENU_TYPE_1 = 1; /** * 2:按钮权限 */ public static final Integer MENU_TYPE_2 = 2; - + /**通告对象类型(USER:指定用户,ALL:全体用户)*/ public static final String MSG_TYPE_UESR = "USER"; public static final String MSG_TYPE_ALL = "ALL"; - + /**发布状态(0未发布,1已发布,2已撤销)*/ public static final String NO_SEND = "0"; public static final String HAS_SEND = "1"; public static final String HAS_CANCLE = "2"; - + /**阅读状态(0未读,1已读)*/ public static final String HAS_READ_FLAG = "1"; public static final String NO_READ_FLAG = "0"; - + /**优先级(L低,M中,H高)*/ public static final String PRIORITY_L = "L"; public static final String PRIORITY_M = "M"; public static final String PRIORITY_H = "H"; - + /** * 短信模板方式 0 .登录模板、1.注册模板、2.忘记密码模板 */ public static final String SMS_TPL_TYPE_0 = "0"; public static final String SMS_TPL_TYPE_1 = "1"; public static final String SMS_TPL_TYPE_2 = "2"; - + /** * 状态(0无效1有效) */ public static final String STATUS_0 = "0"; public static final String STATUS_1 = "1"; - + /** * 同步工作流引擎1同步0不同步 */ @@ -134,7 +138,7 @@ public interface CommonConstant { */ public static final String MSG_CATEGORY_1 = "1"; public static final String MSG_CATEGORY_2 = "2"; - + /** * 是否配置菜单的数据权限 1是0否 */ @@ -146,7 +150,7 @@ public interface CommonConstant { */ public static final Integer USER_UNFREEZE = 1; public static final Integer USER_FREEZE = 2; - + /**字典翻译文本后缀*/ public static final String DICT_TEXT_SUFFIX = "_dictText"; @@ -291,28 +295,28 @@ public interface CommonConstant { public static final String WPS_TYPE_2="2"; - public final static String X_ACCESS_TOKEN = "X-Access-Token"; - public final static String X_SIGN = "X-Sign"; - public final static String X_TIMESTAMP = "X-TIMESTAMP"; + public static final String X_ACCESS_TOKEN = "X-Access-Token"; + public static final String X_SIGN = "X-Sign"; + public static final String X_TIMESTAMP = "X-TIMESTAMP"; /** * 多租户 请求头 */ - public final static String TENANT_ID = "tenant-id"; + public static final String TENANT_ID = "tenant-id"; /** * 微服务读取配置文件属性 服务地址 */ - public final static String CLOUD_SERVER_KEY = "spring.cloud.nacos.discovery.server-addr"; + public static final String CLOUD_SERVER_KEY = "spring.cloud.nacos.discovery.server-addr"; /** * 第三方登录 验证密码/创建用户 都需要设置一个操作码 防止被恶意调用 */ - public final static String THIRD_LOGIN_CODE = "third_login_code"; + public static final String THIRD_LOGIN_CODE = "third_login_code"; - public final static String ANNOUNCEMENT_SEND_STATUS_0 = "0"; + public static final String ANNOUNCEMENT_SEND_STATUS_0 = "0"; /** 系统通告消息状态:1=已发布 */ - public final static String ANNOUNCEMENT_SEND_STATUS_1 = "1"; + public static final String ANNOUNCEMENT_SEND_STATUS_1 = "1"; /** 系统通告消息状态:2=已撤销 */ - public final static String ANNOUNCEMENT_SEND_STATUS_2 = "2"; + public static final String ANNOUNCEMENT_SEND_STATUS_2 = "2"; }