package com.ruoyi.http.config;
|
|
import lombok.Data;
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
import org.springframework.stereotype.Component;
|
|
/**
|
* 天启电表平台配置
|
*/
|
@Data
|
@Component
|
@ConfigurationProperties(prefix = "tqdianbiao")
|
public class TqdianbiaoConfig {
|
|
/** API 基础地址 */
|
private String baseUrl = "https://168.tqdianbiao.com";
|
|
/** 认证 token */
|
private String auth = "b6229401590539d5def7f2bf897b33de";
|
|
/** 是否忽略互感器变比:0-否,1-是 */
|
private Integer ignoreRadio = 1;
|
|
/** 同步配置 */
|
private Sync sync = new Sync();
|
|
@Data
|
public static class Sync {
|
/** 是否启用定时同步 */
|
private Boolean enabled = true;
|
/** 小时同步回看窗口(完整小时数,不含当前小时) */
|
private Integer hourWindow = 1;
|
}
|
}
|