|
|
@@ -2,11 +2,14 @@ package com.zhongzheng.modules.user.vo;
|
|
|
|
|
|
import com.zhongzheng.common.annotation.Excel;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import com.zhongzheng.modules.bank.vo.QuestionBankVo;
|
|
|
+import com.zhongzheng.modules.course.vo.CourseVo;
|
|
|
+import com.zhongzheng.modules.exam.vo.ExamNoteVo;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
import java.util.Date;
|
|
|
-
|
|
|
+import java.util.List;
|
|
|
|
|
|
|
|
|
/**
|
|
|
@@ -33,4 +36,19 @@ public class OrderPossessUserVo {
|
|
|
@ApiModelProperty("拥有的课程id或题库id或考试重点")
|
|
|
private Long possessId;
|
|
|
|
|
|
+ /** 拥有的课程 */
|
|
|
+ @Excel(name = "拥有的课程")
|
|
|
+ @ApiModelProperty("拥有的课程")
|
|
|
+ private List<CourseVo> CourseVoList;
|
|
|
+
|
|
|
+ /** 拥有的考试重点 */
|
|
|
+ @Excel(name = "拥有的考试重点")
|
|
|
+ @ApiModelProperty("拥有的考试重点")
|
|
|
+ private List<ExamNoteVo> examNoteList;
|
|
|
+
|
|
|
+ /** 拥有的考试重点 */
|
|
|
+ @Excel(name = "拥有的考试重点")
|
|
|
+ @ApiModelProperty("拥有的考试重点")
|
|
|
+ private List<QuestionBankVo> questionBankList;
|
|
|
+
|
|
|
}
|