From 8458e64aab474c0fc2f49ae4ff22fb11ce5cf6e2 Mon Sep 17 00:00:00 2001 From: “djh” <“3298565835@qq.com”> Date: 星期一, 11 十一月 2024 16:55:28 +0800 Subject: [PATCH] 批次新增学员查询条件,新增题目导入接口 --- exam-system/src/main/java/com/gkhy/exam/system/domain/vo/StudentStudyPeriodVO.java | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/exam-system/src/main/java/com/gkhy/exam/system/domain/vo/StudentStudyPeriodVO.java b/exam-system/src/main/java/com/gkhy/exam/system/domain/vo/StudentStudyPeriodVO.java index 0c9082a..0b6e742 100644 --- a/exam-system/src/main/java/com/gkhy/exam/system/domain/vo/StudentStudyPeriodVO.java +++ b/exam-system/src/main/java/com/gkhy/exam/system/domain/vo/StudentStudyPeriodVO.java @@ -1,5 +1,6 @@ package com.gkhy.exam.system.domain.vo; +import com.fasterxml.jackson.annotation.JsonInclude; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Getter; @@ -9,10 +10,13 @@ import java.math.BigDecimal; import java.time.LocalDateTime; +import static com.fasterxml.jackson.annotation.JsonInclude.Include.NON_NULL; + @Getter @Setter @Accessors(chain = true) @ApiModel(description = "课程用户学习日志") +@JsonInclude(NON_NULL) public class StudentStudyPeriodVO { @ApiModelProperty(value = "课时id") private Long periodId; @@ -34,4 +38,11 @@ @ApiModelProperty(value = "课时学习更新时间") private LocalDateTime updateTime; + + @ApiModelProperty(value = "资源id") + private Long resourceId; + + @ApiModelProperty(value = "资源种类(1:视频2:音频;3:文档)") + private Integer resourceType; + } -- Gitblit v1.9.2