package com.ycl.jxkg.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;
|
|
}
|