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"` }