TestController.java
769 Bytes
package org.nafmii.nafmiiadmin.controller;
import org.nafmii.nafmiiadmin.service.TestService;
import org.springframework.beans.factory.annotation.Autowired;
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.RestController;
/**
* @author:zhoujh
* @Function:TODO
* @date 2021/4/20 15:46
* @ClassName:
* @version:
* @remark:
*/
@RestController
@RequestMapping("web/nafmii/test/")
public class TestController {
@Autowired
private TestService service;
@GetMapping("search")
public String search(){
String test = service.search();
return test;
}
}