From 6d08eec100243e0be59a207d57ab4db7974e51e4 Mon Sep 17 00:00:00 2001 From: yangbin <yangbin@qq.com> Date: 星期一, 29 七月 2024 15:26:26 +0800 Subject: [PATCH] Merge branch 'master' of http://117.34.109.166:18448/r/mdc_yituo --- lxzn-module-mdc/src/main/java/org/jeecg/modules/mdcJc/controller/ClassMonthlyscheduleController.java | 35 +++++++++++++++++++++++++++++++++++ 1 files changed, 35 insertions(+), 0 deletions(-) diff --git a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdcJc/controller/ClassMonthlyscheduleController.java b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdcJc/controller/ClassMonthlyscheduleController.java new file mode 100644 index 0000000..c6c7102 --- /dev/null +++ b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdcJc/controller/ClassMonthlyscheduleController.java @@ -0,0 +1,35 @@ +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.mapper.ClassMonthlyscheduleMapper; +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<ClassMonthlyschedule,IClassMonthlyscheduleService> { + + @Autowired + private IClassMonthlyscheduleService classMonthlyscheduleService; + + @ApiOperation(value = "mes", notes = "mes") + @GetMapping("/findListClass") + public Result<?> findListClass() { + classMonthlyscheduleService.findListClass("2024-06"); + return null; + } +} -- Gitblit v1.9.3