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.
go-library/service/wikeyun/rest.oil.card_info.go

13 lines
366 B

2 years ago
package wikeyun
import "go.dtapp.net/library/utils/gorequest"
2 years ago
// RestOilCardInfo 油卡详情
func (c *Client) RestOilCardInfo(notMustParams ...gorequest.Params) (body []byte, err error) {
2 years ago
// 参数
params := gorequest.NewParamsWith(notMustParams...)
2 years ago
// 请求
request, err := c.request(apiUrl+"/rest/Oil/cardInfo", params)
return request.ResponseBody, err
2 years ago
}