Files
jx-callback/business/model/api.go
gazebo 0b9189cb87 - paging added for GetStoreOrderInfo.
- GetStoreOrderCountInfo added.
2018-08-22 09:41:02 +08:00

25 lines
489 B
Go

package model
type CallResult struct {
Code string `json:"code"`
Desc string `json:"desc"`
Data string `json:"data"`
}
type GoodsOrderExt struct {
GoodsOrder
WaybillStatus int `json:"waybillStatus"`
CourierName string `orm:"size(32)" json:"courierName"`
CourierMobile string `orm:"size(32)" json:"courierMobile"`
}
type OrderSkuExt struct {
OrderSku
Image string `json:"image"`
}
type GoodsOrderCountInfo struct {
Status int `json:"status"`
Count int `json:"count"`
}