|
@@ -0,0 +1,39 @@
|
|
|
+package cn.com.qmth.examcloud.core.oe.admin.api.request;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+import cn.com.qmth.examcloud.commons.web.cloud.api.BaseRequest;
|
|
|
+import cn.com.qmth.examcloud.core.oe.admin.api.bean.SaveSubjectiveQuestionScoreBean;
|
|
|
+
|
|
|
+/**
|
|
|
+ *
|
|
|
+ * @author chenken
|
|
|
+ * @date 2018年9月21日 下午4:38:10
|
|
|
+ * @company QMTH
|
|
|
+ * @description 阅卷回传主观题分数
|
|
|
+ */
|
|
|
+public class SaveSubjectiveQuestionScoreReq extends BaseRequest {
|
|
|
+
|
|
|
+ private Long examRecordDataId;
|
|
|
+
|
|
|
+ private List<SaveSubjectiveQuestionScoreBean> saveSubjectiveQuestionScoreList;
|
|
|
+
|
|
|
+ public Long getExamRecordDataId() {
|
|
|
+ return examRecordDataId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExamRecordDataId(Long examRecordDataId) {
|
|
|
+ this.examRecordDataId = examRecordDataId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<SaveSubjectiveQuestionScoreBean> getSaveSubjectiveQuestionScoreList() {
|
|
|
+ return saveSubjectiveQuestionScoreList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSaveSubjectiveQuestionScoreList(
|
|
|
+ List<SaveSubjectiveQuestionScoreBean> saveSubjectiveQuestionScoreList) {
|
|
|
+ this.saveSubjectiveQuestionScoreList = saveSubjectiveQuestionScoreList;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+}
|