- GetOrderInfo and GetOrderWaybillInfo added.
This commit is contained in:
@@ -98,13 +98,13 @@ type Waybill struct {
|
||||
OrderVendorID int `orm:"column(order_vendor_id)" json:"orderVendorID"`
|
||||
CourierName string `orm:"size(32)" json:"-"`
|
||||
CourierMobile string `orm:"size(32)" json:"-"`
|
||||
Status int `json:"-"` // 参见WaybillStatus*相关的常量定义
|
||||
Status int `json:"status"` // 参见WaybillStatus*相关的常量定义
|
||||
VendorStatus string `orm:"size(255)" json:"-"`
|
||||
ActualFee int64 `json:"actualFee"` // 实际要支付给快递公司的费用
|
||||
DesiredFee int64 `json:"desiredFee"` // 运单总费用
|
||||
DuplicatedCount int `json:"-"` // 重复新订单消息数,这个一般不是由于消息重发造成的(消息重发由OrderStatus过滤),一般是业务逻辑造成的
|
||||
WaybillCreatedAt time.Time `orm:"type(datetime);index" json:"-"`
|
||||
WaybillFinishedAt time.Time `orm:"type(datetime)" json:"-"`
|
||||
WaybillCreatedAt time.Time `orm:"type(datetime);index" json:"waybillCreatedAt"`
|
||||
WaybillFinishedAt time.Time `orm:"type(datetime)" json:"waybillFinishedAt"`
|
||||
StatusTime time.Time `orm:"type(datetime)" json:"-"` // last status time
|
||||
ModelTimeInfo `json:"-"`
|
||||
OriginalData string `orm:"type(text)" json:"-"`
|
||||
|
||||
Reference in New Issue
Block a user