123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- 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;
- }
- }
|