yangbin
2024-07-29 5b1ad59492452af8f342243605be36f847c07556
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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;
    }
}