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