根据坐标得到城市

This commit is contained in:
苏尹岚
2020-09-24 18:18:55 +08:00
parent 5ac20742ea
commit 5348bcb82e
5 changed files with 114 additions and 0 deletions

View File

@@ -283,3 +283,18 @@ func (c *JxOrderController) TestDefend() {
return retVal, "", err
})
}
// @Title 查询京西商城用户信息
// @Description 查询京西商城用户信息
// @Param token header string true "认证token"
// @Param keyword query string false "关键字"
// @Param offset query int false "结果起始序号以0开始缺省为0"
// @Param pageSize query int false "结果页大小缺省为50-1表示全部"
// @Success 200 {object} controllers.CallResult
// @Failure 200 {object} controllers.CallResult
// @router /GetJxShopUsers [get]
func (c *JxOrderController) GetJxShopUsers() {
c.callGetJxShopUsers(func(params *tJxorderGetJxShopUsersParams) (retVal interface{}, errCode string, err error) {
return retVal, "", err
})
}