parent
5d600313b9
commit
f623de0977
@ -0,0 +1,37 @@
|
|||||||
|
package com.ruoyi.screen.domain.response;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 隐患处置最新隐患响应类
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@ApiModel("隐患处置最新隐患响应类")
|
||||||
|
public class ZongzhiSentimenFilteringResponse {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 隐患名称
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "隐患名称")
|
||||||
|
private String riskName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*等级1.低级 2.中级 3.高级
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "等级1.低级 2.中级 3.高级")
|
||||||
|
private Integer level;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单位名称
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "单位名称")
|
||||||
|
private String unitName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*隐患来源1.众测2.态势感知平台3.网信办
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "隐患来源1.众测2.态势感知平台3.网信办")
|
||||||
|
private Integer riskSource;
|
||||||
|
}
|
@ -0,0 +1,20 @@
|
|||||||
|
package com.ruoyi.screen.domain.response;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 词云响应类
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@ApiModel("词云响应类")
|
||||||
|
public class ZongzhiSentimenWordCloudResponse {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
*词云类别1.开门红 2.城乡文明融合……….
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "词云类别1.开门红 2.城乡文明融合")
|
||||||
|
private Integer type;
|
||||||
|
}
|
@ -0,0 +1,24 @@
|
|||||||
|
package com.ruoyi.common.core.domain.entity;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@ApiModel("字典数据响应类")
|
||||||
|
public class DictDataResponse {
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "字典类型")
|
||||||
|
private String dictType;
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "字典值")
|
||||||
|
private String dictLabel;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "字典键值")
|
||||||
|
private Integer dictValue;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in new issue