20 lines
478 B
Go
20 lines
478 B
Go
package model
|
|
|
|
type GoodsOrderExt struct {
|
|
GoodsOrder
|
|
WaybillStatus int `json:"waybillStatus"`
|
|
CourierName string `orm:"size(32)" json:"courierName"`
|
|
CourierMobile string `orm:"size(32)" json:"courierMobile"`
|
|
CurrentConsigneeMobile string `orm:"-" json:"currentConsigneeMobile"`
|
|
}
|
|
|
|
type OrderSkuExt struct {
|
|
OrderSku
|
|
Image string `json:"image"`
|
|
}
|
|
|
|
type GoodsOrderCountInfo struct {
|
|
Status int `json:"status"`
|
|
Count int `json:"count"`
|
|
}
|