123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- 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.QuestionDetailExtendDto;
- import com.qxgmat.dto.extend.SentenceQuestionDetailExtendDto;
- import com.qxgmat.dto.extend.UserNoteExtendDto;
- @Dto(entity = UserQuestion.class)
- public class UserSentenceQuestionDetailDto {
- private Integer id;
- private String module;
- private Integer questionId;
- private Integer questionNoId;
- private JSONObject answer;
- private JSONObject detail;
- private QuestionDetailExtendDto question;
- private SentenceQuestionDetailExtendDto sentence;
- private Boolean collect;
- private UserNoteExtendDto note;
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public String getModule() {
- return module;
- }
- public void setModule(String module) {
- this.module = module;
- }
- 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 JSONObject getAnswer() {
- return answer;
- }
- public void setAnswer(JSONObject answer) {
- this.answer = answer;
- }
- public QuestionDetailExtendDto getQuestion() {
- return question;
- }
- public void setQuestion(QuestionDetailExtendDto question) {
- this.question = question;
- }
- public SentenceQuestionDetailExtendDto getSentence() {
- return sentence;
- }
- public void setSentence(SentenceQuestionDetailExtendDto sentence) {
- this.sentence = sentence;
- }
- public Boolean getCollect() {
- return collect;
- }
- public void setCollect(Boolean collect) {
- this.collect = collect;
- }
- public UserNoteExtendDto getNote() {
- return note;
- }
- public void setNote(UserNoteExtendDto note) {
- this.note = note;
- }
- public JSONObject getDetail() {
- return detail;
- }
- public void setDetail(JSONObject detail) {
- this.detail = detail;
- }
- }
|