‘liusuyi’
2024-03-15 f485e99f717c8f4388dfb51010e41c0be62b62d8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ard.alarm.stealelec.config;
 
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
 
/**
 * @Description:
 * @ClassName: StealElecConfiguration
 * @Author: 刘苏义
 * @Date: 2023年12月05日9:00:33
 **/
@Configuration
@Data
@ConfigurationProperties(prefix = "stealelec")
public class StealElecConfiguration {
 
    private String url;
 
    private Boolean enabled;
}