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

13 lines
339 B

package wikeyun
// RestPowerDelCard 充值卡删除
func (app *App) RestPowerDelCard(cardId string) (body []byte, err error) {
// 参数
param := NewParams()
param.Set("card_id", cardId)
params := app.NewParamsWith(param)
// 请求
body, err = app.request("https://router.wikeyun.cn/rest/Power/delCard", params)
return body, err
}