门店红线警告

This commit is contained in:
Rosy-zhudan
2019-09-27 10:36:34 +08:00
parent 326990cd18
commit a7b2dc3abd
9 changed files with 540 additions and 21 deletions

View 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)"`
}