门店红线警告
This commit is contained in:
16
business/model/Store_Alert_Inform.go
Normal file
16
business/model/Store_Alert_Inform.go
Normal file
@@ -0,0 +1,16 @@
|
||||
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)"`
|
||||
}
|
||||
Reference in New Issue
Block a user