package org.jeecg.modules.mdcJc.controller; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import lombok.extern.slf4j.Slf4j; 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.service.IClassMonthlyScheduleService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** * @author clown * * @date 2024/7/16 */ @Slf4j @Api(tags = "集成") @RestController @RequestMapping("/mdcJc/mdcAlarmInfo") public class ClassMonthlyScheduleController extends JeecgController { @Autowired private IClassMonthlyScheduleService classMonthlyScheduleService; @ApiOperation(value = "mes", notes = "mes") @GetMapping("/findListClass") public Result findListClass() { classMonthlyScheduleService.findListClass("2024-06"); return null; } }