1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- package com.qxgmat.dto.extend;
- import com.alibaba.fastjson.JSONObject;
- import com.nuliji.tools.annotation.Dto;
- import com.qxgmat.data.dao.entity.Question;
- @Dto(entity = Question.class)
- public class QuestionDetailExtendDto {
- private Integer id;
- private String stem;
- private String type;
- private String difficult;
- private String place;
- private String officialContent;
- private String qxContent;
- private JSONObject content;
- private Integer[] associationContent;
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public String getStem() {
- return stem;
- }
- public void setStem(String stem) {
- this.stem = stem;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public String getDifficult() {
- return difficult;
- }
- public void setDifficult(String difficult) {
- this.difficult = difficult;
- }
- public String getPlace() {
- return place;
- }
- public void setPlace(String place) {
- this.place = place;
- }
- }
|