|
|
@@ -1,6 +1,8 @@
|
|
|
package cn.iocoder.yudao.module.pms.controller.admin.alarm.vo;
|
|
|
|
|
|
+import com.alibaba.fastjson.annotation.JSONField;
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
|
|
+import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
import lombok.*;
|
|
|
import java.util.*;
|
|
|
@@ -44,6 +46,7 @@ public class IotVideoAlarmSaveReqVO {
|
|
|
private String url;
|
|
|
|
|
|
@Schema(description = "模型包", example = "王五")
|
|
|
+ @JsonProperty("MPName")
|
|
|
private String mpName;
|
|
|
|
|
|
@Schema(description = "设备id", example = "11119")
|
|
|
@@ -53,6 +56,7 @@ public class IotVideoAlarmSaveReqVO {
|
|
|
private String taskId;
|
|
|
|
|
|
@Schema(description = "通道id", example = "16427")
|
|
|
+ @JsonProperty("channelID")
|
|
|
private String channelId;
|
|
|
|
|
|
@Schema(description = "通道名称", example = "赵六")
|
|
|
@@ -63,5 +67,6 @@ public class IotVideoAlarmSaveReqVO {
|
|
|
|
|
|
@Schema(description = "子设备局部标识", example = "29919")
|
|
|
private String childDevId;
|
|
|
-
|
|
|
+ @JsonProperty("imageURL")
|
|
|
+ private String imageUrl;
|
|
|
}
|