1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- package com.qxgmat.dto.extend;
- import com.nuliji.tools.annotation.Dto;
- import com.qxgmat.data.dao.entity.Question;
- @Dto(entity = Question.class)
- public class QuestionExtendDto {
- private Integer id;
- private String description;
- private String questionType;
- private String difficult;
- private String place;
- private Integer collectionNumber;
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- 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;
- }
- public String getDescription() {
- return description;
- }
- public void setDescription(String description) {
- this.description = description;
- }
- public Integer getCollectionNumber() {
- return collectionNumber;
- }
- public void setCollectionNumber(Integer collectionNumber) {
- this.collectionNumber = collectionNumber;
- }
- public String getQuestionType() {
- return questionType;
- }
- public void setQuestionType(String questionType) {
- this.questionType = questionType;
- }
- }
|