依赖包版本升级
This commit is contained in:
@@ -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() {
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user