whycrzh
2021-01-28 c8332186836b3dfe1fbd32d7bec7cd29a57e1888
src/main/java/com/fgkj/controller/IndexController.java
@@ -1,6 +1,7 @@
package com.fgkj.controller;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
@@ -16,10 +17,12 @@
@RequestMapping
@Controller
@Api
@Api(tags = "index接口")
@Deprecated
public class IndexController {
    @GetMapping("/")
    @ApiOperation(notes = "",value="index")
    public String index(HttpServletRequest request, HttpServletResponse response){
        return "index";
        /*try {