Joburgess 5 jaren geleden
bovenliggende
commit
472a7db04d

+ 3 - 3
edu-user/edu-user-client-api/src/main/java/com/keao/edu/user/api/client/TaskRemoteService.java

@@ -27,7 +27,7 @@ public interface TaskRemoteService {
 	 * @date 2020.07.23
 	 * @return void
 	 */
-	@GetMapping("/tomorrowExamPlanRemind")
+	@GetMapping("task/tomorrowExamPlanRemind")
 	void tomorrowExamPlanRemind();
 
 	/**
@@ -36,7 +36,7 @@ public interface TaskRemoteService {
 	 * @date 2020.07.27
 	 * @return void
 	 */
-	@GetMapping("/examEndRemind")
+	@GetMapping("task/examEndRemind")
 	void examEndRemind();
 
 	/**
@@ -45,7 +45,7 @@ public interface TaskRemoteService {
 	 * @date 2020.07.30
 	 * @return void
 	 */
-	@GetMapping("/cleanExamRoom")
+	@GetMapping("task/cleanExamRoom")
 	void cleanExamRoom();
 
 }