|
@@ -12,7 +12,7 @@ public class DefaultQuestionWrapper implements QuestionWrapper {
|
|
/**
|
|
/**
|
|
* 选项排序值
|
|
* 选项排序值
|
|
*/
|
|
*/
|
|
- private String[] optionPermutation;
|
|
|
|
|
|
+ private Integer[] optionPermutation;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 题ID
|
|
* 题ID
|
|
@@ -30,12 +30,12 @@ public class DefaultQuestionWrapper implements QuestionWrapper {
|
|
private Float resultScore;
|
|
private Float resultScore;
|
|
|
|
|
|
@Override
|
|
@Override
|
|
- public String[] getOptionPermutation() {
|
|
|
|
|
|
+ public Integer[] getOptionPermutation() {
|
|
return optionPermutation;
|
|
return optionPermutation;
|
|
}
|
|
}
|
|
|
|
|
|
@Override
|
|
@Override
|
|
- public void setOptionPermutation(String[] optionPermutation) {
|
|
|
|
|
|
+ public void setOptionPermutation(Integer[] optionPermutation) {
|
|
this.optionPermutation = optionPermutation;
|
|
this.optionPermutation = optionPermutation;
|
|
}
|
|
}
|
|
|
|
|