Files
jx-callback/controllers/order_controller.go
苏尹岚 32506c47d4 order
2020-10-12 18:29:34 +08:00

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() {
}