作者 唐旭辉

更新

package command
import "time"
//接收海鲜干货的订单
type CreateOrderFromBestshop struct {
//订单编号
... ... @@ -28,8 +26,8 @@ type CreateOrderFromBestshop struct {
//d订单总额
OrderAmount float64 `json:"orderAmount"`
//发货时间
DeliveryTime time.Time `json:"deliveryTime"`
PartnerId int64 `json:"partnerId"`
DeliveryTime string `json:"deliveryTime"`
PartnerId int64 `json:"partnerId"`
Goods []struct {
//货品编号
Sn string `json:"sn"`
... ...