|
@@ -1,5 +1,7 @@
|
|
|
package cn.com.qmth.examcloud.core.oe.admin.client;
|
|
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.admin.api.request.AddExamScoreNoticeQueueReq;
|
|
|
+import cn.com.qmth.examcloud.core.oe.admin.api.response.AddExamScoreNoticeQueueResp;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
import cn.com.qmth.examcloud.core.oe.admin.api.ExamScoreNoticeQueueCloudService;
|
|
@@ -16,4 +18,14 @@ public class ExamScoreNoticeQueueCloudServiceClient extends AbstractCloudClientS
|
|
|
post("examScoreNoticeQueue/sendObtainScoreNotice");
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 添加成绩通知队列
|
|
|
+ * @param req
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public AddExamScoreNoticeQueueResp addExamScoreNoticeQueue(AddExamScoreNoticeQueueReq req) {
|
|
|
+ return post("examScoreNoticeQueue/addExamScoreNoticeQueue",req,AddExamScoreNoticeQueueResp.class);
|
|
|
+ }
|
|
|
+
|
|
|
}
|