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;
|
}
|