parent
6bc2c55434
commit
1bd151b3d8
@ -1,7 +1,29 @@
|
|||||||
package com.ruoyi.tcZz.domain.reponse;
|
package com.ruoyi.tcZz.domain.reponse;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 网评文章
|
* 网评文章
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ApiModel("网评文章")
|
||||||
public class ScreenArticlesResponse {
|
public class ScreenArticlesResponse {
|
||||||
|
/**
|
||||||
|
* 本级录用
|
||||||
|
*/
|
||||||
|
@ApiModelProperty("本级录用")
|
||||||
|
private Integer count;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 苏州级录用
|
||||||
|
*/
|
||||||
|
@ApiModelProperty("苏州级录用")
|
||||||
|
private Integer count1;
|
||||||
|
/**
|
||||||
|
* 省级及以上录用
|
||||||
|
*/
|
||||||
|
@ApiModelProperty("省级及以上录用")
|
||||||
|
private Integer count2;
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,27 @@
|
|||||||
|
package com.ruoyi.tcZz.domain.reponse;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 清郎专项行动
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@ApiModel("清郎专项行动")
|
||||||
|
public class ScreenQinglangResponse {
|
||||||
|
/**
|
||||||
|
* 清郎专项行动处理有害信息数据统计
|
||||||
|
*/
|
||||||
|
@ApiModelProperty("清郎专项行动处理有害信息数据统计")
|
||||||
|
List<ScreenQinglangWeifanResponse> screenQinglangWeifanResponse;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 关闭直播平台违规账号
|
||||||
|
*/
|
||||||
|
@ApiModelProperty("关闭直播平台违规账号")
|
||||||
|
List<ScreenQinglangWeiguiResponse> screenQinglangWeiguiResponse;
|
||||||
|
}
|
@ -0,0 +1,33 @@
|
|||||||
|
package com.ruoyi.tcZz.domain.reponse;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
import org.springframework.format.annotation.DateTimeFormat;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 清郎专项行动处理有害信息数据统计
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@ApiModel("清郎专项行动处理有害信息数据统计")
|
||||||
|
public class ScreenQinglangWeifanResponse {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 处理有害信息数量
|
||||||
|
*/
|
||||||
|
@ApiModelProperty("处理有害信息数量")
|
||||||
|
private Integer count1;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 日期
|
||||||
|
*/
|
||||||
|
@ApiModelProperty("日期")
|
||||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||||
|
private Date dateTime;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,30 @@
|
|||||||
|
package com.ruoyi.tcZz.domain.reponse;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
import org.springframework.format.annotation.DateTimeFormat;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 关闭直播平台违规账号
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@ApiModel("关闭直播平台违规账号")
|
||||||
|
public class ScreenQinglangWeiguiResponse {
|
||||||
|
/**
|
||||||
|
* 关闭直播平台违规账号
|
||||||
|
*/
|
||||||
|
@ApiModelProperty("关闭直播平台违规账号")
|
||||||
|
private Integer count2;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 日期
|
||||||
|
*/
|
||||||
|
@ApiModelProperty("日期")
|
||||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd ")
|
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd ")
|
||||||
|
private Date dateTime;
|
||||||
|
}
|
Loading…
Reference in new issue