package org.jeecg.modules.eam.controller; import io.swagger.annotations.Api; import lombok.extern.slf4j.Slf4j; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @Slf4j @Api(tags="设备管理-首页看板接口") @RestController @RequestMapping("/eam/dashboard") public class EamDashboardController { }