| | |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.CrossOrigin; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | |
| | | * @author ZERO 2021-03-03 09:06 |
| | | */ |
| | | @RestController |
| | | @CrossOrigin |
| | | @RequestMapping("/homepage") |
| | | @Api(tags = "首页相关接口") |
| | | public class HomepageController { |