1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
| package org.ruoyi.controller;
|
| import cn.dev33.satoken.annotation.SaIgnore;
| import lombok.RequiredArgsConstructor;
| import org.springframework.stereotype.Controller;
| import org.springframework.web.bind.annotation.GetMapping;
|
| /**
| * 首页
| *
| * @author Lion Li
| */
| @SaIgnore
| @RequiredArgsConstructor
| @Controller
| public class IndexController {
|
| /**
| * 访问首页,提示语
| */
| @GetMapping("/")
| public String index() {
| return "index.html";
| }
|
| @GetMapping("/success")
| public String success(){
| return "paySuccess.html";
| }
|
| @GetMapping("/cancel")
| public String cancel(){
| return "cancel";
| }
|
| }
|
|