xiangpei
2024-06-03 9014ae6e56a419d8cffa8376641726705c87a77d
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
package com.ycl.jxkg.domain.vo.admin.question;
 
import lombok.Data;
 
 
@Data
public class QuestionResponseVO {
 
    private Integer id;
 
    private Integer questionType;
 
    private Integer textContentId;
 
    private String createTime;
 
    private Integer subjectId;
 
    private Integer createUser;
 
    private String score;
 
    private Integer status;
 
    private String correct;
 
    private Integer analyzeTextContentId;
 
    private Integer difficult;
 
    private String shortTitle;
 
}