zhangherong
2025-05-06 bc3c16045233dca5fdc8d7e823c93d2b2e6598b0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 {
 
}