Lius
2024-08-22 f59452ac384766a21500857e89928a8abc0e75b5
lxzn-module-mdc/src/main/java/org/jeecg/modules/mdcJc/controller/ClassMonthlyScheduleController.java
文件名从 lxzn-module-mdc/src/main/java/org/jeecg/modules/mdcJc/controller/ClassMonthlyscheduleController.java 修改
@@ -6,8 +6,7 @@
import org.jeecg.common.api.vo.Result;
import org.jeecg.common.system.base.controller.JeecgController;
import org.jeecg.modules.mdcJc.entity.ClassMonthlyschedule;
import org.jeecg.modules.mdcJc.mapper.ClassMonthlyscheduleMapper;
import org.jeecg.modules.mdcJc.service.IClassMonthlyscheduleService;
import org.jeecg.modules.mdcJc.service.IClassMonthlyScheduleService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
@@ -21,15 +20,15 @@
@Api(tags = "闆嗘垚")
@RestController
@RequestMapping("/mdcJc/mdcAlarmInfo")
public class ClassMonthlyscheduleController extends JeecgController<ClassMonthlyschedule,IClassMonthlyscheduleService> {
public class ClassMonthlyScheduleController extends JeecgController<ClassMonthlyschedule, IClassMonthlyScheduleService> {
    @Autowired
    private IClassMonthlyscheduleService classMonthlyscheduleService;
    private IClassMonthlyScheduleService classMonthlyScheduleService;
    @ApiOperation(value = "mes", notes = "mes")
    @GetMapping("/findListClass")
    public Result<?> findListClass() {
        classMonthlyscheduleService.findListClass("2024-06");
        classMonthlyScheduleService.findListClass("2024-06");
        return null;
    }
}