daShangDao_xy_dll/controller/downShelf.go

13 lines
315 B
Go

package controller
import (
_type "xianyv/type"
"xianyv/utils/requestUtil"
)
func DownShelf(body _type.DownAndFlash) ([]byte, error) {
path := "/api/open/product/downShelf"
response, err := requestUtil.MakeAPIRequest(body.AppId, body.AppSecret, "https://open.goofish.pro", path, body)
return response, err
}