27 lines
774 B
Java
27 lines
774 B
Java
package com.zhgd.xmgl.base;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnore;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
@Data
|
|
public class SubscribeEventQo {
|
|
@ApiModelProperty(value = "海康host")
|
|
private String artemisConfigHost;
|
|
@ApiModelProperty(value = "海康appKey")
|
|
private String artemisConfigAppKey;
|
|
@ApiModelProperty(value = "海康appSecret")
|
|
private String artemisConfigAppSecret;
|
|
@JsonProperty("eventTypes")
|
|
private List<Long> eventTypes;
|
|
@JsonProperty("eventDest")
|
|
private String eventDest;
|
|
@JsonProperty("subType")
|
|
private Long subType;
|
|
@JsonProperty("eventLvl")
|
|
private List<Long> eventLvl;
|
|
}
|