fuliqi
2024-09-11 b14531e3b850fe6d2fa916ba7b88b3e2bd2ff30a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.ycl.platform.domain.vo.DataCenter;
 
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * 重点点位标注正确率数据
 *
 * @author:xp
 * @date:2024/7/31 9:31
 */
@Data
public class ImportantLabeledCorrectlyVO {
 
    /** 正确数量 */
    private Integer correctNum;
 
    /** 抽查总数 */
    private Integer selectedTotal;
 
    /** 标注正确率 */
    private BigDecimal rate;
 
    /** 月份 */
    private Date month;
}