新增字段
This commit is contained in:
@@ -30,6 +30,7 @@ const (
|
||||
OrderTypeNormal = 0 //普通订单
|
||||
OrderTypeMatter = 0 //物料订单
|
||||
OrderTypeSupplyGoods = 2 //进货订单
|
||||
OrderTypeDefendPrice = 3 //守价订单
|
||||
)
|
||||
|
||||
var (
|
||||
@@ -387,11 +388,13 @@ type PriceDefendOrder struct {
|
||||
VendorOrderID string `orm:"column(vendor_order_id);size(48)" json:"vendorOrderID"`
|
||||
StoreID int `orm:"column(store_id)" json:"storeID"`
|
||||
SkuID int `orm:"column(sku_id)" json:"skuID"`
|
||||
AddressID int `orm:"column(address_id)" json:"addressID"`
|
||||
AddressID int64 `orm:"column(address_id)" json:"addressID"`
|
||||
Count int `json:"count"`
|
||||
DefendPrice int64 `json:"defendPrice"`
|
||||
ActualPayPrice int64 `json:"actualPayPrice"` // 单位为分 顾客实际支付
|
||||
IsBuyNowPrice int `json:"isBuyNowPrice"`
|
||||
DefendPrice int64 `json:"defendPrice"` //守的价格
|
||||
ActualPayPrice int64 `json:"actualPayPrice"` //单位为分 顾客实际支付
|
||||
IsBuyNowPrice int `json:"isBuyNowPrice"` //库存剩x(x=当前客户购买的数量)时以当时价抢购
|
||||
Issue int `json:"issue"` //期数,每晚22:00以后的守价单是归在第二天的期数中
|
||||
IsSuccess int `json:"isSuccess"` //是否抢购成功
|
||||
}
|
||||
|
||||
func (v *PriceDefendOrder) TableIndex() [][]string {
|
||||
|
||||
Reference in New Issue
Block a user