|
@@ -0,0 +1,22 @@
|
|
|
+package cn.com.qmth.examcloud.examwork.api.client;
|
|
|
+
|
|
|
+import cn.com.qmth.examcloud.examwork.api.NoticeCloudService;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+
|
|
|
+@Service
|
|
|
+public class NoticeCloudServiceClient extends AbstractCloudClientSupport
|
|
|
+ implements
|
|
|
+ NoticeCloudService {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = -8874453764538303046L;
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void disposePublishingUserNotice() {
|
|
|
+ post("notice/disposePublishingUserNotice");
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void disposeOverdueNotice() {
|
|
|
+ post("notice/disposeOverdueNotice");
|
|
|
+ }
|
|
|
+}
|