无关风月
1 天以前 083c414ff683ab12e65069c6c0ba6871ed1ed09f
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;
 
}