|
|
@ -182,6 +182,8 @@ type ReplyOrderInfo struct {
|
|
|
|
ReceiverName string
|
|
|
|
ReceiverName string
|
|
|
|
ReceiverMobile string
|
|
|
|
ReceiverMobile string
|
|
|
|
Address string
|
|
|
|
Address string
|
|
|
|
|
|
|
|
PackagesType uint
|
|
|
|
|
|
|
|
Packages []Packages
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type OrderSkuItem struct {
|
|
|
|
type OrderSkuItem struct {
|
|
|
@ -193,6 +195,13 @@ type OrderSkuItem struct {
|
|
|
|
PackageRate uint
|
|
|
|
PackageRate uint
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
type Packages struct {
|
|
|
|
|
|
|
|
Id uint
|
|
|
|
|
|
|
|
WaybillCode string
|
|
|
|
|
|
|
|
LogisticsName string
|
|
|
|
|
|
|
|
LogisticsCode string
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Info @Title 订单列表
|
|
|
|
// Info @Title 订单列表
|
|
|
|
func (o *order) Info(ctx context.Context, orderSubSn uint64) (reply ReplyOrderInfo, err error) {
|
|
|
|
func (o *order) Info(ctx context.Context, orderSubSn uint64) (reply ReplyOrderInfo, err error) {
|
|
|
|
xClient, err := client.GetClient(o)
|
|
|
|
xClient, err := client.GetClient(o)
|
|
|
|