mirror of
https://gitee.com/pan648540858/wvp-GB28181-pro.git
synced 2026-05-10 07:57:48 +08:00
39 lines
686 B
Java
39 lines
686 B
Java
package com.genersoft.iot.vmp.conf;
|
|
|
|
|
|
import lombok.Data;
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
import org.springframework.core.annotation.Order;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
import java.util.List;
|
|
|
|
@Component
|
|
@ConfigurationProperties(prefix = "sip", ignoreInvalidFields = true)
|
|
@Order(0)
|
|
@Data
|
|
public class SipConfig {
|
|
|
|
private String ip;
|
|
|
|
private String showIp;
|
|
|
|
private List<String> monitorIps;
|
|
|
|
private Integer port;
|
|
|
|
private String domain;
|
|
|
|
private String id;
|
|
|
|
private String password;
|
|
|
|
Integer ptzSpeed = 50;
|
|
|
|
Integer registerTimeInterval = 120;
|
|
|
|
private boolean alarm = false;
|
|
|
|
private long timeout = 1000;
|
|
}
|