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

14 lines
445 B

2 years ago
package wikeyun
2 years ago
import "github.com/dtapps/go-library/utils/gorequest"
// RestPowerEditCard 编辑电费充值卡
// https://open.wikeyun.cn/#/apiDocument/9/document/329
func (c *Client) RestPowerEditCard(notMustParams ...gorequest.Params) (body []byte, err error) {
2 years ago
// 参数
params := gorequest.NewParamsWith(notMustParams...)
2 years ago
// 请求
request, err := c.request(apiUrl+"/rest/Power/editCard", params)
return request.ResponseBody, err
2 years ago
}