org.macrocloud.kernel.sms.config.SmsConfiguration Maven / Gradle / Ivy
The newest version!
package org.macrocloud.kernel.sms.config;
import lombok.AllArgsConstructor;
import org.macrocloud.kernel.sms.props.SmsProperties;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Configuration;
/**
* Sms配置类
*
*/
@Configuration(proxyBeanMethods = false)
@AllArgsConstructor
@EnableConfigurationProperties(SmsProperties.class)
public class SmsConfiguration {
}