parent
89a21cf52b
commit
c05d6c1dba
@ -0,0 +1,28 @@
|
||||
package com.ruoyi.screen.domain.response;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 部门专办情况响应类
|
||||
*/
|
||||
@Data
|
||||
@ApiModel("部门专办情况响应类")
|
||||
public class ZongzhiSentimentDeptResponse {
|
||||
|
||||
|
||||
/**
|
||||
* 部门名称
|
||||
*/
|
||||
@ApiModelProperty(value = "部门名称")
|
||||
private String dep_name;
|
||||
|
||||
/**
|
||||
* 数量
|
||||
*/
|
||||
@ApiModelProperty(value = "数量")
|
||||
private Integer count;
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,33 @@
|
||||
package com.ruoyi.screen.domain.response;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 通报统计属地通报响应类
|
||||
*/
|
||||
@Data
|
||||
@ApiModel("通报统计属地通报响应类")
|
||||
public class ZongzhiTbAreaResponse {
|
||||
|
||||
|
||||
/**
|
||||
* 百分比
|
||||
*/
|
||||
@ApiModelProperty(value = " 百分比")
|
||||
private double pt;
|
||||
|
||||
/**
|
||||
* 属地
|
||||
*/
|
||||
@ApiModelProperty(value = "属地")
|
||||
private String locationName;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
@ -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 ZongzhiTbDeptCompleteMonthResponse {
|
||||
|
||||
/**
|
||||
* 通报数量
|
||||
*/
|
||||
@ApiModelProperty(value = "通报数量")
|
||||
private int count;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 通报数量
|
||||
*/
|
||||
@ApiModelProperty(value = "完成期数")
|
||||
private int complete;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 百分比
|
||||
*/
|
||||
@ApiModelProperty(value = "百分比")
|
||||
private double pt;
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package com.ruoyi.screen.domain.response;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 通报完成情况响应类
|
||||
*/
|
||||
@Data
|
||||
@ApiModel("通报完成情况响应类")
|
||||
public class ZongzhiTbDeptCompleteResponse {
|
||||
|
||||
@ApiModelProperty(value = "近一个月完成情况")
|
||||
List<ZongzhiTbDeptCompleteMonthResponse> getmonthList;
|
||||
|
||||
}
|
@ -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 ZongzhiTbDeptCompleteSixResponse {
|
||||
|
||||
/**
|
||||
* 通报数量
|
||||
*/
|
||||
@ApiModelProperty(value = "通报数量")
|
||||
private int count;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 通报数量
|
||||
*/
|
||||
@ApiModelProperty(value = "完成期数")
|
||||
private int complete;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 百分比
|
||||
*/
|
||||
@ApiModelProperty(value = "百分比")
|
||||
private double pt;
|
||||
|
||||
|
||||
}
|
@ -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 ZongzhiTbDeptCompleteThirdMonthResponse {
|
||||
|
||||
/**
|
||||
* 通报数量
|
||||
*/
|
||||
@ApiModelProperty(value = "通报数量")
|
||||
private int count;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 通报数量
|
||||
*/
|
||||
@ApiModelProperty(value = "完成期数")
|
||||
private int complete;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 百分比
|
||||
*/
|
||||
@ApiModelProperty(value = "百分比")
|
||||
private double pt;
|
||||
|
||||
|
||||
}
|
@ -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 ZongzhiTbDeptCompleteYearResponse {
|
||||
|
||||
/**
|
||||
* 通报数量
|
||||
*/
|
||||
@ApiModelProperty(value = "通报数量")
|
||||
private int count;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 通报数量
|
||||
*/
|
||||
@ApiModelProperty(value = "完成期数")
|
||||
private int complete;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 百分比
|
||||
*/
|
||||
@ApiModelProperty(value = "百分比")
|
||||
private double pt;
|
||||
|
||||
|
||||
}
|
@ -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 ZongzhiTbDeptResponse {
|
||||
|
||||
|
||||
/**
|
||||
* 部门名称
|
||||
*/
|
||||
@ApiModelProperty(value = "部门名称")
|
||||
private String dep_name;
|
||||
|
||||
/**
|
||||
* 百分比
|
||||
*/
|
||||
@ApiModelProperty(value = "通报次数")
|
||||
private Integer count;
|
||||
|
||||
}
|
Loading…
Reference in new issue