You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
640 B

package game
import (
"github.com/gogf/gf/v2/frame/g"
)
type CheckRebateReq struct {
g.Meta `path:"/checkRebate" tags:"rebate" method:"get" summary:"充值返还"`
Account string `p:"account"`
Channel string `p:"channel"`
}
type CheckRebateRes struct {
g.Meta `mime:"application/json"`
Code int `json:"code"`
Amount int `json:"amount"`
}
type GetRechargeValueReq struct {
g.Meta `path:"/rebate/getRechargeValue" tags:"rebate" method:"get" summary:"充值返还"`
Account string `p:"account"`
Channel string `p:"channel"`
}
type GetRechargeValueRes struct {
g.Meta `mime:"application/json"`
Amount int `json:"amount"`
}