|
|
package com.monitor.common.config;
|
|
|
|
|
|
import com.util.GetUsersInfoUtil;
|
|
|
import lombok.Getter;
|
|
|
import lombok.Data;
|
|
|
import org.slf4j.Logger;
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
...
|
...
|
@@ -13,6 +13,7 @@ import javax.annotation.PostConstruct; |
|
|
/**
|
|
|
* 告警任务的短信号码 Created by yoho on 2016/5/4.
|
|
|
*/
|
|
|
@Data
|
|
|
@Component("snsMobileConfig")
|
|
|
public class SnsMobileConfig {
|
|
|
public static final Logger logger = LoggerFactory.getLogger(SnsMobileConfig.class);
|
...
|
...
|
@@ -29,22 +30,16 @@ public class SnsMobileConfig { |
|
|
@Autowired
|
|
|
private GetUsersInfoUtil getUsersInfoUtil;
|
|
|
|
|
|
@Getter
|
|
|
private String bigdataMobile;
|
|
|
|
|
|
@Getter
|
|
|
private String javaApiError;
|
|
|
|
|
|
@Getter
|
|
|
private String javaApiSearchError;
|
|
|
|
|
|
@Getter
|
|
|
private String javaServiceMobile;
|
|
|
|
|
|
@Getter
|
|
|
private String redisMobile;
|
|
|
|
|
|
@Getter
|
|
|
private String baseMobile;
|
|
|
|
|
|
@PostConstruct
|
...
|
...
|
|