17 lines
482 B
Go
17 lines
482 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type StoreOrderTime struct {
|
|
StoreID int `orm:"column(store_id)"`
|
|
OrderCreateTime time.Time `orm:"column(order_created_at)"`
|
|
OrderFinishedTime time.Time `orm:"column(order_finished_at)"`
|
|
}
|
|
|
|
type StoreOrderStatus struct {
|
|
StoreID int `orm:"column(store_id)"`
|
|
VendorOrderID string `orm:"column(vendor_order_id)"`
|
|
StatusTime time.Time `orm:"column(status_time)"`
|
|
Status int `orm:"column(status)"`
|
|
}
|