xuefei
2020-12-11 299918864d460132dfcb210007dfb9564be15f04
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 {
    
}