package com.ruoyi.web.controller.api; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; @Controller @RequestMapping("") public class GoStationIndex { @GetMapping("/goStation") public String getInfo() { return "stationIndex"; } @GetMapping("tankuang") public String tankuang() { return "tankuang"; } }