1
This commit is contained in:
@@ -76,3 +76,21 @@ type OrderPickupTime struct {
|
||||
StatusTime time.Time
|
||||
PickDeadline time.Time
|
||||
}
|
||||
|
||||
type StoreFine struct {
|
||||
ID int `orm:"column(id)" json:"id"`
|
||||
CreatedAt time.Time `orm:"auto_now_add;type(datetime)" json:"createdAt"` // 数据时间
|
||||
StoreID int `orm:"column(store_id);size(16)" json:"storeID"` // 门店ID
|
||||
VendorID int `orm:"column(vendor_id);size(4)" json:"vendor_id"` // 平台ID
|
||||
SettleAmount int64 `orm:"column(settle_amount);size(16)" json:"settle_amount"` // 罚没金额
|
||||
BillType int `orm:"column(bill_type);size(16)" json:"bill_type"` // 罚没类型
|
||||
BillDesc string `orm:"column(bill_desc);size(64)" json:"bill_desc"` // 罚没描述
|
||||
BillId string `orm:"column(bill_id);size(32)" json:"bill_id"` // 数据ID
|
||||
FinishTime time.Time `orm:"column(finish_time);size(32)" json:"finish_time"` // 归账日期
|
||||
}
|
||||
|
||||
func (*StoreScore) StoreFine() [][]string {
|
||||
return [][]string{
|
||||
[]string{"StoreID"},
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user