接口补充 liveStream 字段

This commit is contained in:
shikong 2024-01-12 11:15:59 +08:00
parent 588d321fbe
commit 014ddcfcdf
2 changed files with 6 additions and 0 deletions

View File

@ -24,4 +24,7 @@ public class AddDeviceDTO {
@Schema(description = "是否启用")
private boolean enable = true;
@Schema(description = "实时视频流地址")
private String liveStream;
}

View File

@ -28,4 +28,7 @@ public class ModifyDeviceDTO {
@Schema(description = "是否启用")
private Boolean enable = true;
@Schema(description = "实时视频流地址")
private String liveStream;
}