- weimob order and callback

This commit is contained in:
gazebo
2019-01-19 11:03:00 +08:00
parent 2c49d9f1c8
commit 6aeb39d53b
7 changed files with 217 additions and 17 deletions

View File

@@ -0,0 +1,13 @@
package weimobapi
import (
"git.rosy.net.cn/baseapi/utils"
)
func (a *API) QueryLogisticsCompany() (retVal []map[string]interface{}, err error) {
result, err := a.AccessAPI("logistics/queryLogisticsCompany", nil)
if err == nil {
return utils.Slice2MapSlice(result.([]interface{})), nil
}
return nil, err
}