守价订单表
This commit is contained in:
@@ -381,6 +381,25 @@ func (v *OrderSupplementFee) TableIndex() [][]string {
|
||||
}
|
||||
}
|
||||
|
||||
type PriceDefendOrder struct {
|
||||
ModelIDCULD
|
||||
|
||||
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"`
|
||||
Count int `json:"count"`
|
||||
DefendPrice int64 `json:"defendPrice"`
|
||||
ActualPayPrice int64 `json:"actualPayPrice"` // 单位为分 顾客实际支付
|
||||
IsBuyNowPrice int `json:"isBuyNowPrice"`
|
||||
}
|
||||
|
||||
func (v *PriceDefendOrder) TableIndex() [][]string {
|
||||
return [][]string{
|
||||
[]string{"StoreID", "VendorOrderID", "SkuID"},
|
||||
}
|
||||
}
|
||||
|
||||
// 判断是否是购买平台自有物流
|
||||
// 对于京东,饿百来说,就是其自有的物流,对于微商城来说,是达达
|
||||
func IsWaybillPlatformOwn(bill *Waybill) bool {
|
||||
|
||||
Reference in New Issue
Block a user