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.oiledit_card.go

11 lines
322 B

2 years ago
package wikeyun
// RestOilCardEdit 编辑充值卡
2 years ago
func (c *Client) RestOilCardEdit(notMustParams ...Params) (body []byte, err error) {
2 years ago
// 参数
2 years ago
params := c.NewParamsWith(notMustParams...)
2 years ago
// 请求
2 years ago
request, err := c.request("https://router.wikeyun.cn/rest/Oil/editCard", params)
2 years ago
return request.ResponseBody, err
}