liuyu
21 小时以前 6eef0b6730d940ef44e0f66dd8e7d178f1cd2d1f
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
29
30
31
32
33
34
35
36
37
38
39
40
package jnpf.tmsEntity.selftest;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * 自我检测记录列表项
 */
@Data
public class TmsSelfTestRecordVO {
 
    @Schema(description = "答卷ID")
    private String id;
 
    @Schema(description = "题库ID")
    private String bankId;
 
    @Schema(description = "题库名称")
    private String bankName;
 
    @Schema(description = "总题数")
    private Integer totalCount;
 
    @Schema(description = "正确题数")
    private Integer correctCount;
 
    @Schema(description = "正确率")
    private BigDecimal scoreRate;
 
    @Schema(description = "状态")
    private String testStatus;
 
    @Schema(description = "开始时间")
    private String startTime;
 
    @Schema(description = "交卷时间")
    private String submitTime;
}