|
@@ -2,6 +2,7 @@ package com.ym.mec.web.controller;
|
|
|
|
|
|
import com.ym.mec.biz.service.*;
|
|
import com.ym.mec.biz.service.*;
|
|
import com.ym.mec.common.controller.BaseController;
|
|
import com.ym.mec.common.controller.BaseController;
|
|
|
|
+
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
@@ -60,6 +61,9 @@ public class TaskController extends BaseController {
|
|
|
|
|
|
@Autowired
|
|
@Autowired
|
|
private StudentService studentService;
|
|
private StudentService studentService;
|
|
|
|
+
|
|
|
|
+ @Autowired
|
|
|
|
+ private MusicGroupPaymentCalenderService musicGroupPaymentCalenderService;
|
|
|
|
|
|
@GetMapping("/refreshPaymentFeeStatus")
|
|
@GetMapping("/refreshPaymentFeeStatus")
|
|
// 刷新付费状态
|
|
// 刷新付费状态
|
|
@@ -222,8 +226,10 @@ public class TaskController extends BaseController {
|
|
public void updateStudentOperatingTag(){
|
|
public void updateStudentOperatingTag(){
|
|
studentService.updateOperatingTempTag();
|
|
studentService.updateOperatingTempTag();
|
|
}
|
|
}
|
|
-
|
|
|
|
- public void updateMusicGroupPaymentCalenderStatus(){
|
|
|
|
-
|
|
|
|
|
|
+
|
|
|
|
+ // 更新乐团缴费日历的状态
|
|
|
|
+ @GetMapping("/updateMusicGroupPaymentCalenderStatus")
|
|
|
|
+ public void updateMusicGroupPaymentCalenderStatus() {
|
|
|
|
+ musicGroupPaymentCalenderService.autoUpdateMusicGroupPaymentCalenderStatus();
|
|
}
|
|
}
|
|
}
|
|
}
|