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 TimingCorrectlyVO {
|
| /** 正确数量 */
| private Integer correctNum;
|
| /** 抽查总数 */
| private Integer selectedTotal;
|
| /** 校时正确率 */
| private BigDecimal rate;
|
| /** 月份 */
| private Date month;
| }
|
|