@@ -39,6 +39,10 @@ public class TaskController extends BaseController {
//明日考试安排推送
@GetMapping("/tomorrowExamPlanRemind")
public void tomorrowExamPlanRemind(String day){
+ if(true){
+ //功能冲突暂时停用
+ return;
+ }
examRoomService.tomorrowExamPlanRemind(day);
}