优化录像配置。不再使用zlm默认的http服务器

This commit is contained in:
648540858
2023-03-25 18:40:29 +08:00
parent 4f22994cdb
commit 3b1516afe5
9 changed files with 486 additions and 16 deletions

View File

@@ -54,6 +54,8 @@ public class UserSetting {
private String serverId = "000000";
private String recordPath = null;
private String thirdPartyGBIdReg = "[\\s\\S]*";
private List<String> interfaceAuthenticationExcludes = new ArrayList<>();
@@ -248,5 +250,11 @@ public class UserSetting {
this.refuseChannelStatusChannelFormNotify = refuseChannelStatusChannelFormNotify;
}
public String getRecordPath() {
return recordPath;
}
public void setRecordPath(String recordPath) {
this.recordPath = recordPath;
}
}