获取地址开关打开

This commit is contained in:
酱子 2022-03-29 18:25:16 +08:00
parent 7e4638b086
commit 35f2865d79
2 changed files with 3 additions and 3 deletions

View File

@ -9,9 +9,9 @@ ruoyi:
# 实例演示开关 # 实例演示开关
demoEnabled: true demoEnabled: true
# 文件路径 示例( Windows配置D:/ruoyi/uploadPathLinux配置 /home/ruoyi/uploadPath # 文件路径 示例( Windows配置D:/ruoyi/uploadPathLinux配置 /home/ruoyi/uploadPath
profile: D:/ruoyi/uploadPath profile: /home/ruoyi/uploadPath
# 获取ip地址开关 # 获取ip地址开关
addressEnabled: false addressEnabled: true
# 验证码类型 math 数组计算 char 字符验证 # 验证码类型 math 数组计算 char 字符验证
captchaType: math captchaType: math

View File

@ -28,7 +28,7 @@ public class RuoYiConfig
private static String profile; private static String profile;
/** 获取地址开关 */ /** 获取地址开关 */
private static boolean addressEnabled=true; private static boolean addressEnabled;
/** 验证码类型 */ /** 验证码类型 */
private static String captchaType; private static String captchaType;