|
|
|
@ -0,0 +1,15 @@ |
|
|
|
package com.example.gb.controller; |
|
|
|
|
|
|
|
import com.example.gb.util.Result; |
|
|
|
import org.springframework.web.bind.annotation.GetMapping; |
|
|
|
import org.springframework.web.bind.annotation.RequestMapping; |
|
|
|
import org.springframework.web.bind.annotation.RestController; |
|
|
|
|
|
|
|
@RestController |
|
|
|
@RequestMapping("/admin/recharge") |
|
|
|
public class GoldbeanRechargeController { |
|
|
|
@GetMapping("sys/list") |
|
|
|
public Result list(){ |
|
|
|
return null; |
|
|
|
} |
|
|
|
} |