This commit is contained in:
aozhiwei 2023-08-04 10:44:00 +08:00
parent 18138fab77
commit 8d91e2f1a4
2 changed files with 5 additions and 1 deletions

View File

@ -400,7 +400,9 @@ class GoodsInfo(object):
['free_type', 0, '免费类型 0:不免费 1:日刷新'], ['free_type', 0, '免费类型 0:不免费 1:日刷新'],
['shop_icon', 0, '商品图标'], ['shop_icon', 0, '商品图标'],
['gg_product_id', 0, '谷歌商品id'], ['gg_product_id', 0, '谷歌商品id'],
['ios_produnct_id', 0, 'ios商品id'], ['gg_product_id', 0, 'ios商品id'],
['bonus', 0, 'bonus'],
['bonus_num', 0, 'bonus_num'],
] ]
class Goods(object): class Goods(object):

View File

@ -147,6 +147,8 @@ class ShopService {
'shop_icon' => $goodsMeta['shop_icon'], 'shop_icon' => $goodsMeta['shop_icon'],
'gg_product_id' => $goodsMeta['gg_product_id'], 'gg_product_id' => $goodsMeta['gg_product_id'],
'ios_product_id' => $goodsMeta['ios_product_id'], 'ios_product_id' => $goodsMeta['ios_product_id'],
'bonus' => $goodsMeta['bonus'],
'bonus_num' => $goodsMeta['bonus_num'],
); );
} }