- mtwm.OrderLogisticsChange2Self

- TryInterface2xx
This commit is contained in:
gazebo
2019-03-27 11:20:11 +08:00
parent 273b459ed2
commit 4fa834f839
3 changed files with 84 additions and 8 deletions

View File

@@ -147,3 +147,10 @@ func (a *API) OrderBatchPullPhoneNumber(poiCode string, offset, limit int) (real
}
return nil, err
}
func (a *API) OrderLogisticsChange2Self(orderID int64) (err error) {
_, err = a.AccessAPI("order/logistics/change/poi_self", true, map[string]interface{}{
KeyOrderID: orderID,
})
return err
}