This commit is contained in:
邹宗楠
2022-08-29 16:17:40 +08:00
parent 9e139e79d7
commit c3d3ed8f16
6 changed files with 28 additions and 9 deletions

View File

@@ -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)
}