xiangpei
2024-05-14 d5f80c24adbef34f8e66cedb46a72a6395134445
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
package com.mindskip.xzs.domain.vo;
 
import lombok.Data;
 
import java.util.List;
 
/**
 * @author:xp
 * @date:2024/5/14 9:50
 */
@Data
public class SubjectQuestionVO {
 
    private Integer subjectId;
 
    private String subjectName;
 
    private List<Integer> questionIds;
 
 
    @Data
    public static class QuestionPractice {
 
        private Integer questionId;
 
        /** 是否做过:0没有 1做了 */
        private Integer doIt;
 
    }
 
}