wl
2022-11-08 39f08dd934cde1a02f1c243faa43174fa474c87f
ycl-platform/src/main/java/com/ycl/vo/cockpit/statisticsEvents/StatisticsEventsVO.java
@@ -2,6 +2,7 @@
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import java.math.BigDecimal;
@@ -92,4 +93,55 @@
        @ApiModelProperty(value = "动态考核数据")
        private Integer evaluationData;
    }
    @Data
    @AllArgsConstructor
    @ApiModel(description = "中队top10数据信息")
    public static class Top10VO {
        @ApiModelProperty(value = "中队名称")
        private String name;
        @ApiModelProperty(value = "分数")
        private Double score;
    }
    @ApiModel(description = "AI算法")
    @Data
    @AllArgsConstructor
    public static class ArithmeticVO {
        @ApiModelProperty(value = "类型")
        private String name;
        @ApiModelProperty(value = "数量")
        private Integer count;
        @ApiModelProperty(value = "比例")
        private Double ratio;
    }
    @ApiModel(description = "城市体征看板")
    @Data
    @AllArgsConstructor
    public static class CityPanelVo {
        @ApiModelProperty(value = "事件总数")
        private Integer event;
        @ApiModelProperty(value = "超时事件数")
        private Integer overtime;
        @ApiModelProperty(value = "事件处置率")
        private Integer disposePercentage;
        @ApiModelProperty(value = "油烟排放超标")
        private Integer lampblack;
        @ApiModelProperty(value = "违建事件数量")
        private Integer illegalBuilding;
        @ApiModelProperty(value = "案件办理数")
        private Integer caseCount;
        @ApiModelProperty(value = "户外广告违法")
        private Integer advertising;
        @ApiModelProperty(value = "占道经营数")
        private Integer roadsideStallBusiness;
        @ApiModelProperty(value = "渣土运输违章")
        private Integer slag;
    }
}