123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- package cn.com.qmth.export;
- import java.util.List;
- public class KdQuestion {
- private Long id;
- private Integer number;
- private YunkaiQuesStructType qst;
- private QuesStructType quesStructType;
- private Integer structType;
- private Boolean objective;
- private YunkaiDifficulty difficulty;
- private String body;
- private String answer;
- private String qtype;
- private Boolean haveAudio;
- private List<KdQuesOption> options;
- private List<Long> propIds;
- private Boolean valid;
- private Double score;
- private List<Double> subScores;
- private List<KdQuestion> subQuestions;
- public Integer getNumber() {
- return number;
- }
- public void setNumber(Integer number) {
- this.number = number;
- }
- public Integer getStructType() {
- return structType;
- }
- public void setStructType(Integer structType) {
- this.structType = structType;
- }
- public Boolean getObjective() {
- return objective;
- }
- public void setObjective(Boolean objective) {
- this.objective = objective;
- }
- public String getBody() {
- return body;
- }
- public void setBody(String body) {
- this.body = body;
- }
- public String getAnswer() {
- return answer;
- }
- public void setAnswer(String answer) {
- this.answer = answer;
- }
- public List<KdQuesOption> getOptions() {
- return options;
- }
- public void setOptions(List<KdQuesOption> options) {
- this.options = options;
- }
- public Long getId() {
- return id;
- }
- public void setId(Long id) {
- this.id = id;
- }
- public String getQtype() {
- return qtype;
- }
- public void setQtype(String qtype) {
- this.qtype = qtype;
- }
- public Boolean getHaveAudio() {
- return haveAudio;
- }
- public void setHaveAudio(Boolean haveAudio) {
- this.haveAudio = haveAudio;
- }
- public Boolean getValid() {
- return valid;
- }
- public void setValid(Boolean valid) {
- this.valid = valid;
- }
- public List<Long> getPropIds() {
- return propIds;
- }
- public void setPropIds(List<Long> propIds) {
- this.propIds = propIds;
- }
- public YunkaiQuesStructType getQst() {
- return qst;
- }
- public void setQst(YunkaiQuesStructType qst) {
- this.qst = qst;
- }
- public YunkaiDifficulty getDifficulty() {
- return difficulty;
- }
- public void setDifficulty(YunkaiDifficulty difficulty) {
- this.difficulty = difficulty;
- }
- public QuesStructType getQuesStructType() {
- return quesStructType;
- }
- public void setQuesStructType(QuesStructType quesStructType) {
- this.quesStructType = quesStructType;
- }
- public List<Double> getSubScores() {
- return subScores;
- }
- public void setSubScores(List<Double> subScores) {
- this.subScores = subScores;
- }
- public List<KdQuestion> getSubQuestions() {
- return subQuestions;
- }
- public void setSubQuestions(List<KdQuestion> subQuestions) {
- this.subQuestions = subQuestions;
- }
- public Double getScore() {
- return score;
- }
- public void setScore(Double score) {
- this.score = score;
- }
- }
|