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;
|
}
|
}
|