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 ;
|
}
|
|
}
|