- OrderInfo.ShippingFee should be float

This commit is contained in:
gazebo
2019-05-13 16:55:19 +08:00
parent db6929d040
commit 0be4d99201

View File

@@ -146,7 +146,7 @@ type OrderInfo struct {
Remark string `json:"remark"` Remark string `json:"remark"`
Result string `json:"result"` Result string `json:"result"`
ShipperPhone string `json:"shipper_phone"` ShipperPhone string `json:"shipper_phone"`
ShippingFee int `json:"shipping_fee"` ShippingFee float64 `json:"shipping_fee"`
ShippingType int `json:"shipping_type"` ShippingType int `json:"shipping_type"`
SourceID int `json:"source_id"` SourceID int `json:"source_id"`
Status int `json:"status"` Status int `json:"status"`