Newer
Older
huludao / src / main / java / com / newfiber / api / config / GaofenWeather.java
@新烽开发者 新烽开发者 on 19 Jul 904 bytes init
package com.newfiber.api.config;

import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;

/**
 *高分天气属性配置类
 * @ClassName GaofenWeather
 * @Description TODO
 * @Author 张鸿志
 * @Date 2021年6月25日09:57:57 9:57
 * Version 1.0
 **/
@Configuration
@ConfigurationProperties(prefix = "gaofen.weather")
@Data
public class GaofenWeather {

    /** 分钟级降雨量URL */
    private String rainFallUrl;

    /** 预警URL */
    private String alarmUrl;

    /** 天气预报 */
    private String dayByDayForecastUrl;

    /** 秘钥key */
    private String key;

    /** 智能实况天气接口 */
    private String smartUrl;


    /** 逐小时天气数据接口 */
    private String oneByOneUrl;

    /** 获取历史天气的接口 */
    private String historyWeatherUrl;
}