|
@@ -1,6 +1,7 @@
|
|
|
package cn.hnthyy.thmz.controller;
|
|
|
|
|
|
import cn.hnthyy.thmz.comment.UserLoginToken;
|
|
|
+import cn.hnthyy.thmz.common.Constants;
|
|
|
import cn.hnthyy.thmz.entity.thmz.Config;
|
|
|
import cn.hnthyy.thmz.service.thmz.ConfigService;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
@@ -73,7 +74,9 @@ public class ConfigController {
|
|
|
resultMap.put("message", "配置的键不能为空");
|
|
|
return resultMap;
|
|
|
}
|
|
|
- if (StringUtils.isBlank(config.getConfigValue())){
|
|
|
+ if (Constants.ALARM_USER_KEY.equals(config.getConfigKey()) && StringUtils.isBlank(config.getConfigValue())){
|
|
|
+ config.setConfigValue("");
|
|
|
+ }else if (!Constants.ALARM_USER_KEY.equals(config.getConfigKey()) && StringUtils.isBlank(config.getConfigValue())){
|
|
|
resultMap.put("code", -1);
|
|
|
resultMap.put("message", "配置的值不能为空");
|
|
|
return resultMap;
|