Newer
Older
huludao / src / main / java / com / newfiber / api / config / SendMessage.java
@新烽开发者 新烽开发者 on 19 Jul 519 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 = "message.send")
@Data
public class SendMessage {

    /** 发送短信URL */
    private String sendMessageUrl;

}