|
@@ -5,6 +5,8 @@ import com.qmth.themis.business.util.JacksonUtil;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
|
|
+import java.util.List;
|
|
|
|
+
|
|
@ApiModel("开放接口-待评卷考试记录答案")
|
|
@ApiModel("开放接口-待评卷考试记录答案")
|
|
public class OpenRecordAnswerBean {
|
|
public class OpenRecordAnswerBean {
|
|
|
|
|
|
@@ -18,7 +20,7 @@ public class OpenRecordAnswerBean {
|
|
private Integer subIndex;
|
|
private Integer subIndex;
|
|
|
|
|
|
@ApiModelProperty("作答")
|
|
@ApiModelProperty("作答")
|
|
- private JSONArray answer;
|
|
|
|
|
|
+ private String answer;
|
|
|
|
|
|
public Integer getMainNumber() {
|
|
public Integer getMainNumber() {
|
|
return mainNumber;
|
|
return mainNumber;
|
|
@@ -44,11 +46,11 @@ public class OpenRecordAnswerBean {
|
|
this.subIndex = subIndex;
|
|
this.subIndex = subIndex;
|
|
}
|
|
}
|
|
|
|
|
|
- public JSONArray getAnswer() {
|
|
|
|
|
|
+ public String getAnswer() {
|
|
return answer;
|
|
return answer;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setAnswer(JSONArray answer) {
|
|
|
|
|
|
+ public void setAnswer(String answer) {
|
|
this.answer = answer;
|
|
this.answer = answer;
|
|
}
|
|
}
|
|
}
|
|
}
|