package com.qxgmat.dto.response; import com.alibaba.fastjson.JSONObject; import com.nuliji.tools.annotation.Dto; import com.qxgmat.data.dao.entity.UserQuestion; import com.qxgmat.dto.extend.QuestionExtendDto; import com.qxgmat.dto.extend.QuestionNoExtendDto; import java.util.Date; @Dto(entity = UserQuestion.class) public class UserQuestionBaseDto { private Integer id; private Integer no; private String questionModule; private String questionType; private Integer questionId; private Integer questionNoId; private QuestionExtendDto question; private QuestionNoExtendDto questionNo; private Integer isCorrect; private JSONObject setting; private JSONObject detail; private Date updateTime; private Boolean collect; private Boolean note; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public Integer getQuestionId() { return questionId; } public void setQuestionId(Integer questionId) { this.questionId = questionId; } public Integer getQuestionNoId() { return questionNoId; } public void setQuestionNoId(Integer questionNoId) { this.questionNoId = questionNoId; } public QuestionExtendDto getQuestion() { return question; } public void setQuestion(QuestionExtendDto question) { this.question = question; } public Boolean getCollect() { return collect; } public void setCollect(Boolean collect) { this.collect = collect; } public QuestionNoExtendDto getQuestionNo() { return questionNo; } public void setQuestionNo(QuestionNoExtendDto questionNo) { this.questionNo = questionNo; } public Integer getNo() { return no; } public void setNo(Integer no) { this.no = no; } public String getQuestionModule() { return questionModule; } public void setQuestionModule(String questionModule) { this.questionModule = questionModule; } public String getQuestionType() { return questionType; } public void setQuestionType(String questionType) { this.questionType = questionType; } public Integer getIsCorrect() { return isCorrect; } public void setIsCorrect(Integer isCorrect) { this.isCorrect = isCorrect; } public JSONObject getSetting() { return setting; } public void setSetting(JSONObject setting) { this.setting = setting; } public JSONObject getDetail() { return detail; } public void setDetail(JSONObject detail) { this.detail = detail; } public Date getUpdateTime() { return updateTime; } public void setUpdateTime(Date updateTime) { this.updateTime = updateTime; } public Boolean getNote() { return note; } public void setNote(Boolean note) { this.note = note; } }