13 lines
305 B
Java
13 lines
305 B
Java
|
|
package com.klp.common.config;
|
||
|
|
|
||
|
|
import lombok.Data;
|
||
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||
|
|
import org.springframework.stereotype.Component;
|
||
|
|
|
||
|
|
@Component
|
||
|
|
@ConfigurationProperties(prefix = "camera")
|
||
|
|
@Data
|
||
|
|
public class CameraConfig {
|
||
|
|
private String mediaServerHost;
|
||
|
|
}
|