package com.mindskip.xzs.domain.question;
|
|
|
public class QuestionItemObject {
|
|
private String prefix;
|
|
private String content;
|
|
private Integer score;
|
|
private String itemUuid;
|
|
public String getPrefix() {
|
return prefix;
|
}
|
|
public void setPrefix(String prefix) {
|
this.prefix = prefix;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public Integer getScore() {
|
return score;
|
}
|
|
public void setScore(Integer score) {
|
this.score = score;
|
}
|
|
public String getItemUuid() {
|
return itemUuid;
|
}
|
|
public void setItemUuid(String itemUuid) {
|
this.itemUuid = itemUuid;
|
}
|
}
|