1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- package com.qxgmat.dto.extend;
- import com.nuliji.tools.annotation.Dto;
- import com.qxgmat.data.dao.entity.QuestionNo;
- import javax.validation.constraints.NotEmpty;
- @Dto(entity = QuestionNo.class)
- public class QuestionNoExtendDto {
- private Integer id;
- private String title;
- private Integer no;
- private String module;
- private Integer totalNumber;
- private Integer totalCorrect;
- private Integer totalTime;
- private QuestionExtendDto question;
- public QuestionExtendDto getQuestion() {
- return question;
- }
- public void setQuestion(QuestionExtendDto question) {
- this.question = question;
- }
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public String getTitle() {
- return title;
- }
- public void setTitle(String title) {
- this.title = title;
- }
- public Integer getNo() {
- return no;
- }
- public void setNo(Integer no) {
- this.no = no;
- }
- public Integer getTotalNumber() {
- return totalNumber;
- }
- public void setTotalNumber(Integer totalNumber) {
- this.totalNumber = totalNumber;
- }
- public Integer getTotalCorrect() {
- return totalCorrect;
- }
- public void setTotalCorrect(Integer totalCorrect) {
- this.totalCorrect = totalCorrect;
- }
- public Integer getTotalTime() {
- return totalTime;
- }
- public void setTotalTime(Integer totalTime) {
- this.totalTime = totalTime;
- }
- public String getModule() {
- return module;
- }
- public void setModule(String module) {
- this.module = module;
- }
- }
|