1
This commit is contained in:
@@ -335,3 +335,14 @@ func (a *API) CommentScore(appPoiCode string) (commentScoreResult *CommentScoreR
|
||||
}
|
||||
return commentScoreResult, err
|
||||
}
|
||||
|
||||
// 获取授权门店列表
|
||||
func (a *API) GetBoundList(otherStoreId string) (interface{}, error) {
|
||||
param := make(map[string]interface{}, 0)
|
||||
param["page_num"] = 1
|
||||
param["page_size"] = 20
|
||||
if otherStoreId != "" {
|
||||
param["app_poi_code"] = otherStoreId
|
||||
}
|
||||
return a.AccessAPI("ecommerce/poi/bound/list", true, param)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user