19 lines
397 B
Java
19 lines
397 B
Java
|
|
|
||
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||
|
|
import lombok.Data;
|
||
|
|
import lombok.ToString;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
@ToString
|
||
|
|
public class AlertVideo {
|
||
|
|
private String id;
|
||
|
|
@JsonProperty("alert_time")
|
||
|
|
private Double alertTime;
|
||
|
|
private Object device;
|
||
|
|
private Object source;
|
||
|
|
private Object alg;
|
||
|
|
private String video;
|
||
|
|
@JsonProperty("hazard_leve")
|
||
|
|
private String hazardLeve;
|
||
|
|
}
|