|
@@ -0,0 +1,42 @@
|
|
|
|
+package cn.com.qmth.examcloud.exchange.outer.api.response;
|
|
|
|
+
|
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
|
+import cn.com.qmth.examcloud.commons.web.cloud.api.BaseResponse;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ *
|
|
|
|
+ * @author chenken
|
|
|
|
+ * @date 2018年11月16日 下午3:08:14
|
|
|
|
+ * @company QMTH
|
|
|
|
+ * @description 成绩队列返回信息
|
|
|
|
+ */
|
|
|
|
+public class GetScoreQueueTopResp extends BaseResponse{
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ *
|
|
|
|
+ */
|
|
|
|
+ private static final long serialVersionUID = -2874809807909407199L;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "队列ID", example = "1", required = true)
|
|
|
|
+ private Long queueId;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "考试记录ID", example = "1", required = true)
|
|
|
|
+ private Long examRecordDataId;
|
|
|
|
+
|
|
|
|
+ public Long getQueueId() {
|
|
|
|
+ return queueId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setQueueId(Long queueId) {
|
|
|
|
+ this.queueId = queueId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getExamRecordDataId() {
|
|
|
|
+ return examRecordDataId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setExamRecordDataId(Long examRecordDataId) {
|
|
|
|
+ this.examRecordDataId = examRecordDataId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+}
|