无关风月
昨天 25b19e60e004290531f61fdf608d1adb5e531903
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.ruoyi.system.vo.system;
 
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
@Data
@ApiModel(value = "巡检排行榜VO")
public class DataStatisticsRankVO implements Serializable {
 
    @ApiModelProperty(value = "名称")
    private String name;
 
    @ApiModelProperty(value = "任务总数")
    private Integer taskCount;
 
    @ApiModelProperty(value = "合格数")
    private Long qualifiedCount;
 
}