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.
wikeyun/rest.oil.add_card.go

16 lines
394 B

package wikeyun
import (
"context"
"go.dtapp.net/gorequest"
)
// RestOilCardAdd 添加充值卡
func (c *Client) RestOilCardAdd(ctx context.Context, notMustParams ...gorequest.Params) (body []byte, err error) {
// 参数
params := gorequest.NewParamsWith(notMustParams...)
// 请求
request, err := c.request(ctx, apiUrl+"/rest/Oil/addCard", params)
return request.ResponseBody, err
}