package cn.cetc54.platform.zhyl.api;
|
|
import io.swagger.annotations.Api;
|
import lombok.extern.slf4j.Slf4j;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
/**
|
* @author xfei
|
* @date 2020/12/10
|
*/
|
@Slf4j
|
@RestController
|
@Api(description = "首页接口")
|
@RequestMapping("/api/index")
|
public class IndexController {
|
|
}
|