1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
| package com.fzzy.igds.api.v1.data;
|
| import lombok.Data;
|
| import java.io.Serializable;
|
| /**
| * @Description
| * @Author CZT
| * @Date 2026/1/7 10:21
| */
| @Data
| public class Param3031 implements Serializable {
|
| private String cameraId;
| private String cameraName;
| private String name;
| private String bizType;
| private String type;
| private String level;
| private String info;
| private String time;
| private String tags;
| private String imgBase64;
| /**
| * 是否生成批复告警数据
| * 类型:String,非必填
| * 默认:N
| * 值:Y/N
| */
| private String isGenerateAReply;
| }
|
|