解决冲突

This commit is contained in:
苏尹岚
2020-05-14 14:35:33 +08:00
4 changed files with 14 additions and 3 deletions

View File

@@ -154,7 +154,7 @@ type OrderSku struct {
SkuType int `json:"skuType"` // 当前如果为gift就为1否则缺省为0
PromotionType int `json:"promotionType"` // todo 当前是用于记录京东的PromotionType(生成jxorder用),没有做转换
OrderCreatedAt time.Time `orm:"type(datetime);index" json:"-"` // 分区考虑
IsVendorAct bool `orm:"-" json:"-"` //用于区分是否在平台上有活动,且需要按新规则填结算价
IsVendorAct int `json:"isVendorAct"`
}
// 同样商品在一个订单中可能重复出现(比如搞活动时,相同商品价格不一样,第一个有优惠)