wisdomisite-java/src/main/java/com/zhgd/xmgl/base/SubscribeEventQo.java
2024-02-29 09:53:33 +08:00

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;
}