wjli
2023-05-16 5c12c5a4490898f20259e9de83767c4dadff10ba
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package cn.exrick.xboot.core.config.properties;
 
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
 
import java.util.ArrayList;
import java.util.List;
 
/**
 * @author Exrickx
 */
@Data
@Configuration
@ConfigurationProperties(prefix = "captcha")
public class CaptchaProperties {
 
    private List<String> image = new ArrayList<>();
 
    private List<String> sms = new ArrayList<>();
 
    private List<String> vaptcha = new ArrayList<>();
 
    private List<String> email = new ArrayList<>();
}