package org.springblade.modules.dp.controller; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import lombok.AllArgsConstructor; import org.springblade.core.boot.ctrl.BladeController; import org.springblade.core.tool.api.R; import org.springblade.modules.fire.service.IFireService; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** * 大屏防火预警 控制器 * * @author GuoShiLong * @since 2023-03-08 */ @RestController @AllArgsConstructor @RequestMapping("dp/fireWarning") @Api(value = "防火预警", tags = "防火预警接口") public class FireWarningController extends BladeController { // private IFireWarningService fireWarningService; private IFireService fireService; /** * 预警台账 */ @GetMapping("/earlyWarningLedger") @ApiOperation(value = "预警台账", notes = "预警台账") public R getEarlyWarningLedger() { return null; } }