|
@@ -0,0 +1,52 @@
|
|
|
+package cn.com.qmth.examcloud.core.oe.student.api.request;
|
|
|
+
|
|
|
+import cn.com.qmth.examcloud.api.commons.exchange.BaseRequest;
|
|
|
+
|
|
|
+public class DeleteExamAudioAnswerTempReq extends BaseRequest {
|
|
|
+
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ */
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+ //考试记录id
|
|
|
+ private Long examRecordDataId;
|
|
|
+ //考生id
|
|
|
+ private Long examStudentId;
|
|
|
+ //题目id
|
|
|
+ private String questionId;
|
|
|
+ //音频文件路径
|
|
|
+ private String audioFileUrl;
|
|
|
+
|
|
|
+ public Long getExamRecordDataId() {
|
|
|
+ return examRecordDataId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExamRecordDataId(Long examRecordDataId) {
|
|
|
+ this.examRecordDataId = examRecordDataId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getExamStudentId() {
|
|
|
+ return examStudentId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExamStudentId(Long examStudentId) {
|
|
|
+ this.examStudentId = examStudentId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getQuestionId() {
|
|
|
+ return questionId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setQuestionId(String questionId) {
|
|
|
+ this.questionId = questionId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAudioFileUrl() {
|
|
|
+ return audioFileUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAudioFileUrl(String audioFileUrl) {
|
|
|
+ this.audioFileUrl = audioFileUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|