zhubaomin
2 天以前 e88d34fd4cbe3a0cc57ecfdc1710d66bc88e26b5
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
26
27
package com.dy.pipIrrProject.video;
 
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
 
import java.util.List;
 
/**
 * @Author: liurunyu
 * @Date: 2025/6/9 14:21
 * @Description
 */
@Configuration
@ConfigurationProperties(prefix = "video")
public class CameraTypesConfig {
 
    public static List<String> types;
 
    public List<String> getTypes(){
        return types;
    }
 
    public void setTypes(List<String> types){
        CameraTypesConfig.types = types ;
    }
 
}