22 lines
463 B
Go
22 lines
463 B
Go
package controllers
|
|
|
|
import (
|
|
"github.com/astaxie/beego"
|
|
)
|
|
|
|
type OrderController struct {
|
|
beego.Controller
|
|
}
|
|
|
|
// @Title 支付
|
|
// @Description 支付
|
|
// @Param token header string true "认证token"
|
|
// @Param userID query string true "用户ID"
|
|
// @Param roleList query string true "角色列表"
|
|
// @Success 200 {object} controllers.CallResult
|
|
// @Failure 200 {object} controllers.CallResult
|
|
// @router /Pay [post]
|
|
func (c *OrderController) Pay() {
|
|
|
|
}
|