依赖包版本升级

This commit is contained in:
648540858
2022-08-19 17:11:51 +08:00
parent 8f77d0c25c
commit 1a9e49d9ff
54 changed files with 1153 additions and 1489 deletions

View File

@@ -1,10 +1,16 @@
package com.genersoft.iot.vmp.vmanager.bean;
import com.genersoft.iot.vmp.gb28181.bean.GbStream;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.List;
/**
* @author lin
*/
@Schema(description = "多个推流信息")
public class BatchGBStreamParam {
@Schema(description = "推流信息列表")
private List<GbStream> gbStreams;
public List<GbStream> getGbStreams() {

View File

@@ -1,6 +1,9 @@
package com.genersoft.iot.vmp.vmanager.bean;
import io.swagger.v3.oas.annotations.media.Schema;
@Schema(description = "统一返回结果")
public class WVPResult<T> {
public WVPResult() {
@@ -13,8 +16,11 @@ public class WVPResult<T> {
}
@Schema(description = "错误码0为成功")
private int code;
@Schema(description = "描述,错误时描述错误原因")
private String msg;
@Schema(description = "数据")
private T data;
private static final Integer SUCCESS = 200;