Ver Fonte

。。。

WANG há 6 anos atrás
pai
commit
7232910840

+ 4 - 5
examcloud-core-examwork-api/src/main/java/cn/com/qmth/examcloud/examwork/api/NoticeCloudService.java

@@ -2,13 +2,12 @@ package cn.com.qmth.examcloud.examwork.api;
 
 import cn.com.qmth.examcloud.api.commons.CloudService;
 import io.swagger.annotations.ApiOperation;
-import org.springframework.web.bind.annotation.PostMapping;
 
 public interface NoticeCloudService extends CloudService {
 
-    @ApiOperation(value = "处理发布中的用户通知数据")
-    void disposePublishingUserNotice();
+	@ApiOperation(value = "处理发布中的用户通知数据")
+	void disposePublishingUserNotice();
 
-    @ApiOperation(value = "清理过期的通知数据")
-    void disposeOverdueNotice();
+	@ApiOperation(value = "清理过期的通知数据")
+	void disposeOverdueNotice();
 }