package com.casic.controller; import com.casic.mapper.DeviceDataMapper; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class TestController { @Autowired private DeviceDataMapper deviceDataMapper; @RequestMapping("/test") public Object testMap() { return deviceDataMapper.getFlowData(); } }