daShangDao_xy_dll/controller/getGoosDetail.go

13 lines
317 B
Go

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