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

13 lines
349 B

package wikeyun
import "go.dtapp.net/gorequest"
// RestOilCardDel 油卡删除
func (c *Client) RestOilCardDel(notMustParams ...gorequest.Params) (body []byte, err error) {
// 参数
params := gorequest.NewParamsWith(notMustParams...)
// 请求
request, err := c.request(apiUrl+"/rest/Oil/delCard", params)
return request.ResponseBody, err
}