FeiAoController.java 440 Bytes
package com.ruoyi.controller;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

/**
 * @author 20412
 */
@RestController
@RequestMapping("/api")
public class FeiAoController {

    @RequestMapping(value = "/test",method = RequestMethod.GET)
    public String test(){
        return "测试";
    }
}