Lius
2024-08-22 f59452ac384766a21500857e89928a8abc0e75b5
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
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<ClassMonthlyschedule, IClassMonthlyScheduleService> {
 
    @Autowired
    private IClassMonthlyScheduleService classMonthlyScheduleService;
 
    @ApiOperation(value = "mes", notes = "mes")
    @GetMapping("/findListClass")
    public Result<?> findListClass() {
        classMonthlyScheduleService.findListClass("2024-06");
        return null;
    }
}