|
@@ -0,0 +1,55 @@
|
|
|
|
+package cn.com.qmth.examcloud.core.oe.websocket.api.request;
|
|
|
|
+
|
|
|
|
+import java.util.Map;
|
|
|
|
+
|
|
|
|
+import cn.com.qmth.examcloud.api.commons.exchange.BaseRequest;
|
|
|
|
+
|
|
|
|
+public class SendAudioAnswerMessageReq extends BaseRequest{
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ *
|
|
|
|
+ */
|
|
|
|
+ private static final long serialVersionUID = 3147167204808636817L;
|
|
|
|
+
|
|
|
|
+ //事件类型
|
|
|
|
+ private String eventType;
|
|
|
|
+ //数据对象
|
|
|
|
+ private Map<String,Object> data;
|
|
|
|
+ //考试记录id
|
|
|
|
+ private Long examRecordDataId;
|
|
|
|
+// //题目id
|
|
|
|
+// private Long questionId;
|
|
|
|
+// //音频文件地址
|
|
|
|
+// private String audioFileUrl;
|
|
|
|
+ public Long getExamRecordDataId() {
|
|
|
|
+ return examRecordDataId;
|
|
|
|
+ }
|
|
|
|
+ public void setExamRecordDataId(Long examRecordDataId) {
|
|
|
|
+ this.examRecordDataId = examRecordDataId;
|
|
|
|
+ }
|
|
|
|
+// public Long getQuestionId() {
|
|
|
|
+// return questionId;
|
|
|
|
+// }
|
|
|
|
+// public void setQuestionId(Long questionId) {
|
|
|
|
+// this.questionId = questionId;
|
|
|
|
+// }
|
|
|
|
+// public String getAudioFileUrl() {
|
|
|
|
+// return audioFileUrl;
|
|
|
|
+// }
|
|
|
|
+// public void setAudioFileUrl(String audioFileUrl) {
|
|
|
|
+// this.audioFileUrl = audioFileUrl;
|
|
|
|
+// }
|
|
|
|
+ public String getEventType() {
|
|
|
|
+ return eventType;
|
|
|
|
+ }
|
|
|
|
+ public void setEventType(String eventType) {
|
|
|
|
+ this.eventType = eventType;
|
|
|
|
+ }
|
|
|
|
+ public Map<String, Object> getData() {
|
|
|
|
+ return data;
|
|
|
|
+ }
|
|
|
|
+ public void setData(Map<String, Object> data) {
|
|
|
|
+ this.data = data;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+}
|