zlm shell 配置

This commit is contained in:
shikong 2023-08-18 16:40:11 +08:00
parent cc2366ef6d
commit 27b56f6046
2 changed files with 12 additions and 0 deletions

View File

@ -50,4 +50,7 @@ public class ServerConfig {
@JsonUnwrapped(prefix = "rtsp.")
private RtspConfig rtsp;
@JsonUnwrapped(prefix = "shell.")
private ShellConfig shell;
}

View File

@ -0,0 +1,9 @@
package cn.skcks.docking.gb28181.media.dto.config;
import lombok.Data;
@Data
public class ShellConfig {
private Integer maxReqSize;
private Integer port;
}