parent
49a8761e8d
commit
1482347015
@ -0,0 +1,23 @@
|
|||||||
|
package com.ruoyi.screen.domain.response;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 大屏数据请朗专项行动数据统计响应类
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@ApiModel("大屏数据请朗专项行动数据统计响应类")
|
||||||
|
public class ZongzhiActionResponse {
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "数量")
|
||||||
|
private Integer count;
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "攻击源IP地址区域")
|
||||||
|
private String attackIpRegion;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,24 @@
|
|||||||
|
package com.ruoyi.screen.domain.response;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 等保系统响应类
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@ApiModel("等保系统响应类")
|
||||||
|
public class ZongzhiDengbaoSystemResponse {
|
||||||
|
/**
|
||||||
|
* 等保系统名称
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "等保系统名称")
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 等保系统数量
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "等保系统数量")
|
||||||
|
private int count;
|
||||||
|
}
|
@ -0,0 +1,27 @@
|
|||||||
|
package com.ruoyi.screen.domain.response;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 等保单位响应类
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@ApiModel("等保单位响应类")
|
||||||
|
public class ZongzhiDengbaoUnitResponse {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 等保单位名称
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "等保单位名称")
|
||||||
|
private String name1;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 等保单位数量
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "等保单位数量")
|
||||||
|
private int count1;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,27 @@
|
|||||||
|
package com.ruoyi.screen.domain.response;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* IDC响应类
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@ApiModel("IDC响应类")
|
||||||
|
public class ZongzhiIdcResponse {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* IDC单位名称
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "IDC单位名称")
|
||||||
|
private String name3;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* IDC单位数量
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "IDC单位数量")
|
||||||
|
private int count3;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,23 @@
|
|||||||
|
package com.ruoyi.screen.domain.response;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 大屏数据举报总数和处置率响应类
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@ApiModel("大屏数据举报总数和处置率响应类")
|
||||||
|
public class ZongzhiNetworkReportResponse {
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "举报总数")
|
||||||
|
private Integer count;
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "处置率")
|
||||||
|
private Double handle;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,26 @@
|
|||||||
|
package com.ruoyi.screen.domain.response;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 政府网站响应类
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@ApiModel("政府网站响应类")
|
||||||
|
public class ZongzhiZhengfuResponse {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 政府网站名称
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "政府网站名称")
|
||||||
|
private String name2;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 政府网站数量
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "政府网站数量")
|
||||||
|
private int count2;
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in new issue