You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
656 B
24 lines
656 B
package com.zc.business.domain;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
@ApiModel(value = "NonAutomaticWarning", description = "非机预警事件订阅实体类")
|
|
public class NonAutomaticWarning {
|
|
|
|
@ApiModelProperty("用户名称")
|
|
@JsonProperty
|
|
private String APPKEY;
|
|
@ApiModelProperty("用户密码")
|
|
@JsonProperty
|
|
private String APPSECRET;
|
|
@ApiModelProperty("请求路径")
|
|
@JsonProperty
|
|
private String URI;
|
|
@ApiModelProperty("请求IP")
|
|
@JsonProperty
|
|
private String IP;
|
|
}
|
|
|