【fix sonar】GlobalConstant文件

This commit is contained in:
梁琦涛
2023-03-10 17:30:46 +08:00
parent bc146e6357
commit a757bf2b77
@@ -7,11 +7,15 @@ package com.jero.boot.starter.lock.enums;
* @date 2020-11-11
*/
public interface GlobalConstant {
public class GlobalConstant {
private GlobalConstant(){
}
/**
* Redis地址连接前缀
*/
String REDIS_CONNECTION_PREFIX = "redis://";
public static final String REDIS_CONNECTION_PREFIX = "redis://";
}