param.yaml 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328
  1. spbill_create_ip: 47.94.172.121
  2. month_card_callback_url: https://xapi2.xinyueyouxi.com/monthCard/activate
  3. first_recharge_callback_url: https://xapi2.xinyueyouxi.com/theFirstCharge/activate
  4. currency_verify_user: false
  5. third_payinfo:
  6. ruixue:
  7. key: bca3b5e6c6955172
  8. payurl: https://fish37.weileapp.com/channelapi/v1/pay/callback/wlfish37/androidminigame
  9. fish37:
  10. key: ab20764438e0a27923cc18dbd3qwegb2
  11. payurl: https://gfish37.weile.com/fishhallapi/chess/pay_callback
  12. is_minipay: false
  13. minipay_testusers:
  14. - 3866659
  15. notallow_pay:
  16. - 426-818
  17. - 428-818
  18. - 430-818
  19. # 审核版本的goodsname
  20. hongshi_review:
  21. goods140: 钻石*6
  22. goods141: 钻石*12
  23. goods142: 钻石*30
  24. goods143: 钻石*50
  25. goods144: 钻石*98
  26. goods145: 钻石*198
  27. goods146: 钻石*488
  28. goods147: 钻石*1000
  29. goods148: 钻石*2000
  30. goods847: 钻石*328
  31. goods848: 钻石*648
  32. goods849: 钻石*1
  33. # 支付回归
  34. goods_limit_regress:
  35. goods284: true
  36. goods285: true
  37. goods286: true
  38. # 季卡限购
  39. goods_limit_quarter:
  40. goods281: true
  41. goods282: true
  42. # 捕鱼商城
  43. fish37_mall:
  44. goods274: true
  45. goods275: true
  46. goods276: true
  47. goods277: true
  48. goods278: true
  49. goods279: true
  50. goods280: true
  51. # 每日限购商品
  52. goods_limit_day:
  53. goods152: true
  54. goods153: true
  55. goods154: true
  56. goods155: true
  57. goods156: true
  58. goods157: true
  59. goods158: true
  60. goods231: true
  61. goods232: true
  62. goods233: true
  63. goods234: true
  64. goods235: true
  65. goods236: true
  66. goods237: true
  67. goods238: true
  68. goods239: true
  69. goods240: true
  70. goods241: true
  71. goods242: true
  72. goods243: true
  73. goods244: true
  74. goods245: true
  75. goods246: true
  76. goods252: true
  77. goods284: true
  78. goods285: true
  79. goods286: true
  80. goods291: true #6元
  81. goods292: true #12元
  82. goods293: true #50元
  83. goods310: true #328元返还豆豆
  84. #【ID1021772】【大厅】商城优化新增计费点
  85. goods_everyday_1_60: true
  86. goods_everyday_1_120: true
  87. # 限时礼包
  88. goods_limit_time:
  89. goods181: true
  90. goods182: true
  91. goods183: true
  92. goods184: true
  93. goods185: true
  94. goods186: true
  95. # 月限购
  96. goods_limit_month:
  97. firstCharge_6: true
  98. firstCharge_12: true
  99. firstCharge_30: true
  100. firstCharge_50: true
  101. # 超级豪华大奖池
  102. goods_limit_prize:
  103. goods200: true
  104. goods201: true
  105. goods202: true
  106. goods203: true
  107. goods204: true
  108. goods205: true
  109. goods206: true
  110. # 返还礼包
  111. goods_recharge_return:
  112. goods152: true
  113. goods153: true
  114. goods154: true
  115. goods155: true
  116. goods156: true
  117. goods157: true
  118. goods158: true
  119. goods252: true
  120. goods310: true
  121. #【ID1021540】【大厅+web】返还礼包调整
  122. goods_fh_3: true
  123. goods_fh_6: true
  124. goods_fh_12: true
  125. goods_fh_30: true
  126. goods_fh_50: true
  127. goods_fh_98: true
  128. goods_fh_198: true
  129. goods_fh_300: true
  130. goods_fh_600: true
  131. goods_fh_1200: true
  132. # 返还礼包(新版) 【ID1021540】【大厅+web】返还礼包调整
  133. goods_recharge_return_new:
  134. goods_fh_3: true
  135. goods_fh_6: true
  136. goods_fh_12: true
  137. goods_fh_30: true
  138. goods_fh_50: true
  139. goods_fh_98: true
  140. goods_fh_198: true
  141. goods_fh_300: true
  142. goods_fh_600: true
  143. goods_fh_1200: true
  144. # 过期下架礼包
  145. goods_overdue:
  146. - month_card17
  147. - month_card_new
  148. - month_card_normal
  149. - month_card_vip
  150. - minigame_month_card_vip
  151. - goods127
  152. # VIP等级经验对应
  153. level_map:
  154. 0: 0
  155. 1: 1
  156. 99: 2
  157. 397: 3
  158. 845: 4
  159. 1843: 5
  160. 3523: 6
  161. 6503: 7
  162. 12183: 8
  163. 21063: 9
  164. 33863: 10
  165. 49663: 11
  166. 69463: 12
  167. 89263: 13
  168. 119063: 14
  169. 148863: 15
  170. 178663: 16
  171. # 棋牌周限购礼包
  172. week_limit:
  173. "wxgoods8": 1
  174. "wxgoods9": 1
  175. "wxgoods10": 1
  176. "goods294": 3 # 98元
  177. "goods295": 3 # 198元
  178. "goods296": 3 # 328元
  179. "goods311": 3 # 648元
  180. "goods_everyweek_1_980": 1
  181. "goods_everyweek_1_680": 1
  182. # 棋牌永久限购礼包
  183. forever_limit:
  184. "firstCharge": 1
  185. "goods196": 1
  186. "goods197": 1
  187. "goods198": 1
  188. "first_double_6": 1
  189. "first_double_12": 1
  190. "first_double_30": 1
  191. "first_double_50": 1
  192. "first_double_98": 1
  193. "first_double_198": 1
  194. "first_double_648": 1
  195. "first_double_488": 1
  196. "goods263": 1
  197. "goods283": 1
  198. "goods290": 1
  199. "goods_forever_1_300": 1
  200. "goods_forever_1_60": 1
  201. # 首购双倍
  202. "goods_diamond_first_3": 1
  203. "goods_diamond_first_6": 1
  204. "goods_diamond_first_12": 1
  205. "goods_diamond_first_30": 1
  206. "goods_diamond_first_50": 1
  207. "goods_diamond_first_98": 1
  208. "goods_diamond_first_198": 1
  209. "goods_diamond_first_328": 1
  210. "goods_diamond_first_648": 1
  211. "goods_diamond_first_1200": 1
  212. "goods_diamond_first_1998": 1
  213. #限制充值转严选支付 0表示不限制 >0 达到临界值限制
  214. recharge_limit:
  215. month_max: 0
  216. day_max: 0
  217. # 储钱罐 计费点:达到的等级
  218. goods_pigpybank:
  219. goods253: 1
  220. goods247: 2
  221. goods248: 3
  222. goods249: 4
  223. goods250: 5
  224. goods251: 6
  225. goods254: 7
  226. # 转盘充值倍数百分比 50
  227. turnplate_probability:
  228. - 100
  229. - 80
  230. - 50
  231. - 40
  232. - 38
  233. - 36
  234. - 34
  235. - 32
  236. - 30
  237. - 28
  238. - 26
  239. - 25
  240. - 24
  241. - 22
  242. - 20
  243. - 18
  244. - 16
  245. - 15
  246. - 14
  247. - 12
  248. # 转盘充值活动计费点 1倍可获得基础豆豆数量
  249. turnplate_goods:
  250. first_double_6: true #首充双倍
  251. first_double_12: true #首充双倍
  252. first_double_30: true #首充双倍
  253. first_double_50: true #首充双倍
  254. first_double_98: true #首充双倍
  255. first_double_198: true #首充双倍
  256. first_double_648: true #首充双倍
  257. first_double_488: true #首充双倍
  258. goods215: true #非首充6元
  259. goods216: true #非首充12元
  260. goods217: true #非首充30元
  261. goods218: true #非首充50元
  262. goods219: true #非首充98元
  263. goods220: true #非首充198元
  264. goods221: true #非首充648元
  265. goods222: true #非首充488元
  266. goods265: true #返利礼包6元
  267. goods266: true #返利礼包12元
  268. goods267: true #返利礼包30元
  269. goods268: true #返利礼包50元
  270. goods269: true #返利礼包98元
  271. goods270: true #返利礼包198元
  272. goods271: true #返利礼包328元
  273. goods272: true #返利礼包488元
  274. goods273: true #返利礼包648元
  275. # 转盘充值活动计费点 参与的计费点
  276. turnplate_addlog_goods:
  277. first_double_6: true #首充双倍
  278. first_double_12: true #首充双倍
  279. first_double_30: true #首充双倍
  280. first_double_50: true #首充双倍
  281. first_double_98: true #首充双倍
  282. first_double_198: true #首充双倍
  283. first_double_648: true #首充双倍
  284. first_double_488: true #首充双倍
  285. goods215: true #非首充6元
  286. goods216: true #非首充12元
  287. goods217: true #非首充30元
  288. goods218: true #非首充50元
  289. goods219: true #非首充98元
  290. goods220: true #非首充198元
  291. goods221: true #非首充648元
  292. goods222: true #非首充488元
  293. goods247: true
  294. goods248: true
  295. goods249: true
  296. goods250: true
  297. goods251: true
  298. # 新手周卡
  299. goods_new_weekcard:
  300. goods263: 60000 #基础豆豆数
  301. # 折扣debug版本
  302. mall_debug:
  303. goods329: 100000 #10钻石豆豆
  304. goods330: 300000 #30钻石豆豆
  305. goods297: 600000 #60钻石豆豆
  306. goods333: 10000000 #100钻石豆豆
  307. goods298: 1200000 #120钻石豆豆
  308. goods299: 30000000 #300钻石豆豆
  309. goods331: 5000000000 #500钻石豆豆
  310. goods334: 600000 #600钻石豆豆
  311. goods335: 60000000 #900钻石豆豆
  312. goods300: 9800000 #980钻石豆豆
  313. goods339: 10000000000 #1000钻石豆豆
  314. goods336: 1500000 #1500钻石豆豆
  315. goods304: 19800000000 #1980钻石豆豆
  316. goods337: 32800000 #3000钻石豆豆
  317. goods301: 32800000 #3280钻石豆豆
  318. goods338: 64800000 #6000钻石豆豆
  319. goods302: 64800000 #6480钻石豆豆
  320. goods337: 90000000
  321. goods338: 150000000
  322. goods339: 300000000
  323. goods340: 600000000
  324. #月卡 计费点:天数
  325. month_card:
  326. goods287: {day: 30, prop: 300000}
  327. goods288: {day: 90, prop: 900000}
  328. goods289: {day: 360, prop: 3600000}
  329. # 限购每月特惠
  330. goods_limit_th_month:
  331. goods255: #限购特惠6元
  332. boxname: 青铜宝箱
  333. basebean: 60000
  334. props:
  335. - prop_id: 350
  336. amount: 1
  337. - prop_id: 272
  338. amount: 10
  339. - prop_id: 273
  340. amount: 10
  341. goods256: #限购特惠12元
  342. boxname: 黄铜宝箱
  343. basebean: 120000
  344. props:
  345. - prop_id: 350
  346. amount: 2
  347. - prop_id: 272
  348. amount: 10
  349. - prop_id: 273
  350. amount: 10
  351. - prop_id: 274
  352. amount: 10
  353. goods257: #限购特惠30元
  354. boxname: 白银宝箱
  355. basebean: 300000
  356. props:
  357. - prop_id: 350
  358. amount: 3
  359. - prop_id: 272
  360. amount: 10
  361. - prop_id: 273
  362. amount: 10
  363. - prop_id: 274
  364. amount: 20
  365. goods258: #限购特惠50元
  366. boxname: 黄金宝箱
  367. basebean: 500000
  368. props:
  369. - prop_id: 350
  370. amount: 4
  371. - prop_id: 272
  372. amount: 10
  373. - prop_id: 273
  374. amount: 10
  375. - prop_id: 274
  376. amount: 10
  377. - prop_id: 275
  378. amount: 20
  379. goods259: #限购特惠98元
  380. boxname: 钻石宝箱
  381. basebean: 980000
  382. props:
  383. - prop_id: 351
  384. amount: 5
  385. - prop_id: 272
  386. amount: 10
  387. - prop_id: 273
  388. amount: 10
  389. - prop_id: 274
  390. amount: 10
  391. - prop_id: 275
  392. amount: 20
  393. goods260: #限购特惠198元
  394. boxname: 史诗宝箱
  395. basebean: 1980000
  396. props:
  397. - prop_id: 351
  398. amount: 6
  399. - prop_id: 274
  400. amount: 10
  401. - prop_id: 275
  402. amount: 20
  403. - prop_id: 278
  404. amount: 20
  405. - prop_id: 280
  406. amount: 20
  407. goods261: #限购特惠488元
  408. boxname: 至尊宝箱
  409. basebean: 4880000
  410. props:
  411. - prop_id: 351
  412. amount: 8
  413. - prop_id: 274
  414. amount: 10
  415. - prop_id: 275
  416. amount: 20
  417. - prop_id: 278
  418. amount: 20
  419. - prop_id: 280
  420. amount: 20
  421. - prop_id: 273
  422. amount: 20
  423. goods262: #限购特惠648元
  424. boxname: 至尊宝箱
  425. basebean: 6480000
  426. props:
  427. - prop_id: 351
  428. amount: 9
  429. - prop_id: 274
  430. amount: 20
  431. - prop_id: 275
  432. amount: 20
  433. - prop_id: 278
  434. amount: 20
  435. - prop_id: 280
  436. amount: 20
  437. - prop_id: 273
  438. amount: 20
  439. goods264: #限购特惠328元
  440. boxname: 荣耀宝箱
  441. basebean: 3280000
  442. props:
  443. - prop_id: 351
  444. amount: 7
  445. - prop_id: 275
  446. amount: 20
  447. - prop_id: 278
  448. amount: 20
  449. - prop_id: 280
  450. amount: 20
  451. - prop_id: 281
  452. amount: 20
  453. # 神秘宝藏
  454. precious_goods:
  455. goods223: true
  456. goods224: true
  457. goods225: true
  458. goods226: true
  459. goods227: true
  460. goods228: true
  461. goods229: true
  462. goods230: true
  463. # 刮刮卡
  464. luck_card_goods:
  465. goods312: true #6元
  466. goods313: true #12元
  467. goods314: true #30元
  468. goods315: true #50元
  469. goods316: true #98元
  470. goods317: true #198元
  471. goods318: true #648元
  472. goods319: true #328元
  473. # 鸿运礼包
  474. goodLuckAward:
  475. goods231:
  476. min: 67
  477. max: 100
  478. goods232:
  479. min: 50
  480. max: 83
  481. goods233:
  482. min: 40
  483. max: 71
  484. goods234:
  485. min: 33
  486. max: 63
  487. goods235:
  488. min: 29
  489. max: 56
  490. goods236:
  491. min: 67
  492. max: 100
  493. goods237:
  494. min: 50
  495. max: 83
  496. goods238:
  497. min: 40
  498. max: 71
  499. goods239:
  500. min: 33
  501. max: 63
  502. goods240:
  503. min: 29
  504. max: 56
  505. goods241:
  506. min: 29
  507. max: 56
  508. goods242:
  509. min: 67
  510. max: 100
  511. goods243:
  512. min: 50
  513. max: 83
  514. goods244:
  515. min: 40
  516. max: 71
  517. goods245:
  518. min: 33
  519. max: 63
  520. goods246:
  521. min: 33
  522. max: 63
  523. # 特惠礼包 特惠各个阶段奖励 1:首日 2:连续2日 3:连续3日
  524. goods_limit_preferential:
  525. th_1:
  526. 1:
  527. - - prop_id: 15
  528. amount: 160000
  529. - prop_id: 411
  530. amount: 4
  531. - prop_id: 272
  532. amount: 3
  533. - prop_id: 273
  534. amount: 3
  535. - prop_id: 274
  536. amount: 2
  537. - - prop_id: 15
  538. amount: 160000
  539. - prop_id: 411
  540. amount: 4
  541. - prop_id: 274
  542. amount: 2
  543. - prop_id: 275
  544. amount: 3
  545. - prop_id: 278
  546. amount: 3
  547. - - prop_id: 15
  548. amount: 160000
  549. - prop_id: 411
  550. amount: 4
  551. - prop_id: 272
  552. amount: 3
  553. - prop_id: 275
  554. amount: 2
  555. - prop_id: 280
  556. amount: 3
  557. 2:
  558. - - prop_id: 15
  559. amount: 200000
  560. - prop_id: 411
  561. amount: 6
  562. - prop_id: 272
  563. amount: 4
  564. - prop_id: 273
  565. amount: 4
  566. - prop_id: 274
  567. amount: 4
  568. - - prop_id: 15
  569. amount: 200000
  570. - prop_id: 411
  571. amount: 6
  572. - prop_id: 274
  573. amount: 4
  574. - prop_id: 275
  575. amount: 4
  576. - prop_id: 280
  577. amount: 4
  578. - - prop_id: 15
  579. amount: 200000
  580. - prop_id: 411
  581. amount: 6
  582. - prop_id: 272
  583. amount: 4
  584. - prop_id: 273
  585. amount: 4
  586. - prop_id: 281
  587. amount: 4
  588. 3:
  589. - - prop_id: 15
  590. amount: 400000
  591. - prop_id: 411
  592. amount: 8
  593. - prop_id: 272
  594. amount: 6
  595. - prop_id: 273
  596. amount: 5
  597. - prop_id: 274
  598. amount: 5
  599. - - prop_id: 15
  600. amount: 400000
  601. - prop_id: 411
  602. amount: 8
  603. - prop_id: 274
  604. amount: 6
  605. - prop_id: 278
  606. amount: 5
  607. - prop_id: 280
  608. amount: 5
  609. - - prop_id: 15
  610. amount: 400000
  611. - prop_id: 411
  612. amount: 8
  613. - prop_id: 278
  614. amount: 6
  615. - prop_id: 280
  616. amount: 5
  617. - prop_id: 281
  618. amount: 5
  619. th_2:
  620. 1:
  621. - - prop_id: 15
  622. amount: 400000
  623. - prop_id: 411
  624. amount: 10
  625. - prop_id: 272
  626. amount: 7
  627. - prop_id: 273
  628. amount: 7
  629. - prop_id: 274
  630. amount: 6
  631. - - prop_id: 15
  632. amount: 400000
  633. - prop_id: 411
  634. amount: 10
  635. - prop_id: 274
  636. amount: 7
  637. - prop_id: 275
  638. amount: 7
  639. - prop_id: 278
  640. amount: 6
  641. - - prop_id: 15
  642. amount: 400000
  643. - prop_id: 411
  644. amount: 10
  645. - prop_id: 275
  646. amount: 7
  647. - prop_id: 278
  648. amount: 7
  649. - prop_id: 280
  650. amount: 6
  651. 2:
  652. - - prop_id: 15
  653. amount: 600000
  654. - prop_id: 411
  655. amount: 12
  656. - prop_id: 272
  657. amount: 8
  658. - prop_id: 273
  659. amount: 8
  660. - prop_id: 274
  661. amount: 8
  662. - - prop_id: 15
  663. amount: 600000
  664. - prop_id: 411
  665. amount: 12
  666. - prop_id: 273
  667. amount: 8
  668. - prop_id: 274
  669. amount: 8
  670. - prop_id: 275
  671. amount: 8
  672. - - prop_id: 15
  673. amount: 600000
  674. - prop_id: 411
  675. amount: 12
  676. - prop_id: 274
  677. amount: 8
  678. - prop_id: 275
  679. amount: 8
  680. - prop_id: 278
  681. amount: 8
  682. 3:
  683. - - prop_id: 15
  684. amount: 1200000
  685. - prop_id: 411
  686. amount: 14
  687. - prop_id: 272
  688. amount: 10
  689. - prop_id: 273
  690. amount: 10
  691. - prop_id: 274
  692. amount: 8
  693. - - prop_id: 15
  694. amount: 1200000
  695. - prop_id: 411
  696. amount: 14
  697. - prop_id: 273
  698. amount: 10
  699. - prop_id: 274
  700. amount: 10
  701. - prop_id: 275
  702. amount: 8
  703. - - prop_id: 15
  704. amount: 1200000
  705. - prop_id: 411
  706. amount: 14
  707. - prop_id: 274
  708. amount: 10
  709. - prop_id: 275
  710. amount: 10
  711. - prop_id: 278
  712. amount: 8
  713. # 特惠礼包 (特殊渠道奖励) 特惠各个阶段奖励 1:首日 2:连续2日 3:连续3日
  714. goods_limit_preferential_super:
  715. th_1:
  716. 1:
  717. - - prop_id: 15
  718. amount: 120000
  719. - prop_id: 411
  720. amount: 4
  721. - prop_id: 272
  722. amount: 3
  723. - prop_id: 273
  724. amount: 3
  725. - prop_id: 274
  726. amount: 2
  727. - - prop_id: 15
  728. amount: 120000
  729. - prop_id: 411
  730. amount: 4
  731. - prop_id: 274
  732. amount: 2
  733. - prop_id: 275
  734. amount: 3
  735. - prop_id: 278
  736. amount: 3
  737. - - prop_id: 15
  738. amount: 120000
  739. - prop_id: 411
  740. amount: 4
  741. - prop_id: 272
  742. amount: 3
  743. - prop_id: 275
  744. amount: 2
  745. - prop_id: 280
  746. amount: 3
  747. 2:
  748. - - prop_id: 15
  749. amount: 150000
  750. - prop_id: 411
  751. amount: 6
  752. - prop_id: 272
  753. amount: 4
  754. - prop_id: 273
  755. amount: 4
  756. - prop_id: 274
  757. amount: 4
  758. - - prop_id: 15
  759. amount: 150000
  760. - prop_id: 411
  761. amount: 6
  762. - prop_id: 274
  763. amount: 4
  764. - prop_id: 275
  765. amount: 4
  766. - prop_id: 280
  767. amount: 4
  768. - - prop_id: 15
  769. amount: 150000
  770. - prop_id: 411
  771. amount: 6
  772. - prop_id: 272
  773. amount: 4
  774. - prop_id: 273
  775. amount: 4
  776. - prop_id: 281
  777. amount: 4
  778. 3:
  779. - - prop_id: 15
  780. amount: 200000
  781. - prop_id: 411
  782. amount: 8
  783. - prop_id: 272
  784. amount: 6
  785. - prop_id: 273
  786. amount: 5
  787. - prop_id: 274
  788. amount: 5
  789. - - prop_id: 15
  790. amount: 200000
  791. - prop_id: 411
  792. amount: 8
  793. - prop_id: 274
  794. amount: 6
  795. - prop_id: 278
  796. amount: 5
  797. - prop_id: 280
  798. amount: 5
  799. - - prop_id: 15
  800. amount: 200000
  801. - prop_id: 411
  802. amount: 8
  803. - prop_id: 278
  804. amount: 6
  805. - prop_id: 280
  806. amount: 5
  807. - prop_id: 281
  808. amount: 5
  809. th_2:
  810. 1:
  811. - - prop_id: 15
  812. amount: 240000
  813. - prop_id: 411
  814. amount: 10
  815. - prop_id: 272
  816. amount: 7
  817. - prop_id: 273
  818. amount: 7
  819. - prop_id: 274
  820. amount: 6
  821. - - prop_id: 15
  822. amount: 240000
  823. - prop_id: 411
  824. amount: 10
  825. - prop_id: 274
  826. amount: 7
  827. - prop_id: 275
  828. amount: 7
  829. - prop_id: 278
  830. amount: 6
  831. - - prop_id: 15
  832. amount: 240000
  833. - prop_id: 411
  834. amount: 10
  835. - prop_id: 275
  836. amount: 7
  837. - prop_id: 278
  838. amount: 7
  839. - prop_id: 280
  840. amount: 6
  841. 2:
  842. - - prop_id: 15
  843. amount: 360000
  844. - prop_id: 411
  845. amount: 12
  846. - prop_id: 272
  847. amount: 8
  848. - prop_id: 273
  849. amount: 8
  850. - prop_id: 274
  851. amount: 8
  852. - - prop_id: 15
  853. amount: 360000
  854. - prop_id: 411
  855. amount: 12
  856. - prop_id: 273
  857. amount: 8
  858. - prop_id: 274
  859. amount: 8
  860. - prop_id: 275
  861. amount: 8
  862. - - prop_id: 15
  863. amount: 360000
  864. - prop_id: 411
  865. amount: 12
  866. - prop_id: 274
  867. amount: 8
  868. - prop_id: 275
  869. amount: 8
  870. - prop_id: 278
  871. amount: 8
  872. 3:
  873. - - prop_id: 15
  874. amount: 500000
  875. - prop_id: 411
  876. amount: 14
  877. - prop_id: 272
  878. amount: 10
  879. - prop_id: 273
  880. amount: 10
  881. - prop_id: 274
  882. amount: 8
  883. - - prop_id: 15
  884. amount: 500000
  885. - prop_id: 411
  886. amount: 14
  887. - prop_id: 273
  888. amount: 10
  889. - prop_id: 274
  890. amount: 10
  891. - prop_id: 275
  892. amount: 8
  893. - - prop_id: 15
  894. amount: 500000
  895. - prop_id: 411
  896. amount: 14
  897. - prop_id: 274
  898. amount: 10
  899. - prop_id: 275
  900. amount: 10
  901. - prop_id: 278
  902. amount: 8
  903. goods_limit_preferential_card:
  904. th_1:
  905. 1:
  906. - - prop_id: 15
  907. amount: 120000
  908. - prop_id: 350
  909. amount: 1
  910. - prop_id: 272
  911. amount: 3
  912. - prop_id: 273
  913. amount: 3
  914. - prop_id: 274
  915. amount: 2
  916. - - prop_id: 15
  917. amount: 120000
  918. - prop_id: 350
  919. amount: 1
  920. - prop_id: 274
  921. amount: 2
  922. - prop_id: 275
  923. amount: 3
  924. - prop_id: 278
  925. amount: 3
  926. - - prop_id: 15
  927. amount: 120000
  928. - prop_id: 350
  929. amount: 1
  930. - prop_id: 272
  931. amount: 3
  932. - prop_id: 275
  933. amount: 2
  934. - prop_id: 280
  935. amount: 3
  936. 2:
  937. - - prop_id: 15
  938. amount: 150000
  939. - prop_id: 350
  940. amount: 2
  941. - prop_id: 272
  942. amount: 4
  943. - prop_id: 273
  944. amount: 4
  945. - prop_id: 274
  946. amount: 4
  947. - - prop_id: 15
  948. amount: 150000
  949. - prop_id: 350
  950. amount: 2
  951. - prop_id: 274
  952. amount: 4
  953. - prop_id: 275
  954. amount: 4
  955. - prop_id: 280
  956. amount: 4
  957. - - prop_id: 15
  958. amount: 150000
  959. - prop_id: 350
  960. amount: 2
  961. - prop_id: 272
  962. amount: 4
  963. - prop_id: 273
  964. amount: 4
  965. - prop_id: 281
  966. amount: 4
  967. 3:
  968. - - prop_id: 15
  969. amount: 200000
  970. - prop_id: 350
  971. amount: 3
  972. - prop_id: 272
  973. amount: 6
  974. - prop_id: 273
  975. amount: 5
  976. - prop_id: 274
  977. amount: 5
  978. - - prop_id: 15
  979. amount: 200000
  980. - prop_id: 350
  981. amount: 3
  982. - prop_id: 274
  983. amount: 6
  984. - prop_id: 278
  985. amount: 5
  986. - prop_id: 280
  987. amount: 5
  988. - - prop_id: 15
  989. amount: 200000
  990. - prop_id: 350
  991. amount: 3
  992. - prop_id: 278
  993. amount: 6
  994. - prop_id: 280
  995. amount: 5
  996. - prop_id: 281
  997. amount: 5
  998. th_2:
  999. 1:
  1000. - - prop_id: 15
  1001. amount: 240000
  1002. - prop_id: 351
  1003. amount: 2
  1004. - prop_id: 272
  1005. amount: 7
  1006. - prop_id: 273
  1007. amount: 7
  1008. - prop_id: 274
  1009. amount: 6
  1010. - - prop_id: 15
  1011. amount: 240000
  1012. - prop_id: 351
  1013. amount: 2
  1014. - prop_id: 274
  1015. amount: 7
  1016. - prop_id: 275
  1017. amount: 7
  1018. - prop_id: 278
  1019. amount: 6
  1020. - - prop_id: 15
  1021. amount: 240000
  1022. - prop_id: 351
  1023. amount: 2
  1024. - prop_id: 275
  1025. amount: 7
  1026. - prop_id: 278
  1027. amount: 7
  1028. - prop_id: 280
  1029. amount: 6
  1030. 2:
  1031. - - prop_id: 15
  1032. amount: 360000
  1033. - prop_id: 351
  1034. amount: 3
  1035. - prop_id: 272
  1036. amount: 8
  1037. - prop_id: 273
  1038. amount: 8
  1039. - prop_id: 274
  1040. amount: 8
  1041. - - prop_id: 15
  1042. amount: 360000
  1043. - prop_id: 351
  1044. amount: 3
  1045. - prop_id: 273
  1046. amount: 8
  1047. - prop_id: 274
  1048. amount: 8
  1049. - prop_id: 275
  1050. amount: 8
  1051. - - prop_id: 15
  1052. amount: 360000
  1053. - prop_id: 351
  1054. amount: 3
  1055. - prop_id: 274
  1056. amount: 8
  1057. - prop_id: 275
  1058. amount: 8
  1059. - prop_id: 278
  1060. amount: 8
  1061. 3:
  1062. - - prop_id: 15
  1063. amount: 500000
  1064. - prop_id: 351
  1065. amount: 4
  1066. - prop_id: 272
  1067. amount: 10
  1068. - prop_id: 273
  1069. amount: 10
  1070. - prop_id: 274
  1071. amount: 8
  1072. - - prop_id: 15
  1073. amount: 500000
  1074. - prop_id: 351
  1075. amount: 4
  1076. - prop_id: 273
  1077. amount: 10
  1078. - prop_id: 274
  1079. amount: 10
  1080. - prop_id: 275
  1081. amount: 8
  1082. - - prop_id: 15
  1083. amount: 500000
  1084. - prop_id: 351
  1085. amount: 4
  1086. - prop_id: 274
  1087. amount: 10
  1088. - prop_id: 275
  1089. amount: 10
  1090. - prop_id: 278
  1091. amount: 8
  1092. # 储钱罐2 计费点:达到的等级
  1093. goods_pigpybank2:
  1094. 1:
  1095. tag: goods253
  1096. min: 20000
  1097. max: 50000
  1098. 2:
  1099. tag: goods247
  1100. min: 120000
  1101. max: 306000
  1102. 3:
  1103. tag: goods248
  1104. min: 240000
  1105. max: 624000
  1106. 4:
  1107. tag: goods249
  1108. min: 600000
  1109. max: 1590000
  1110. 5:
  1111. tag: goods250
  1112. min: 1000000
  1113. max: 2700000
  1114. 6:
  1115. tag: goods251
  1116. min: 1960000
  1117. max: 5590000
  1118. 7:
  1119. tag: goods254
  1120. min: 3960000
  1121. max: 11880000
  1122. allmallpay:
  1123. 0-0: #通用
  1124. - wxappid: wx3a15462c3b0af3ea
  1125. wxname: 微乐游戏
  1126. merchantsconf:
  1127. - mchid: 1610535577
  1128. limit: 8000
  1129. - mchid: 1610596697
  1130. limit: 8000
  1131. - mchid: 1603895563
  1132. limit: 8000
  1133. - mchid: 1608761863
  1134. limit: 8000
  1135. - mchid: 1610068089
  1136. limit: 8000
  1137. - mchid: 1610276129
  1138. limit: 8000
  1139. - mchid: 1610440786
  1140. limit: 8000
  1141. - mchid: 1610533655
  1142. limit: 8000
  1143. 10002-821: #测试专用
  1144. - wxappid: wx3a15462c3b0af3ea
  1145. wxname: 微乐游戏
  1146. merchantsconf:
  1147. - mchid: 1610535577
  1148. limit: 6
  1149. - mchid: 1610596697
  1150. limit: 6
  1151. originalpay: #原始支付
  1152. 42-818:
  1153. name: 微乐保皇
  1154. channels: ["150-818"]
  1155. 38-818:
  1156. name: 微乐刨幺
  1157. channels: ["398-818", "54-818"]
  1158. 170-818:
  1159. name: 微乐陕西麻将
  1160. channels: ["372-818", "374-818"]
  1161. 140-818:
  1162. name: 微乐江西棋牌
  1163. channels: ["128-818"]
  1164. dispatchpay: #调度支付
  1165. 150-818:
  1166. name: 微乐山东麻将
  1167. conf:
  1168. - daylimit: 4
  1169. money: 1185
  1170. - daylimit: 10
  1171. money: 1580
  1172. - daylimit: 18
  1173. money: 1775
  1174. - daylimit: 99999999
  1175. money: 1895
  1176. 398-818:
  1177. name: 微乐打滚子
  1178. conf:
  1179. - daylimit: 4
  1180. money: 1455
  1181. - daylimit: 10
  1182. money: 1940
  1183. - daylimit: 18
  1184. money: 2185
  1185. - daylimit: 99999999
  1186. money: 2330
  1187. 54-818:
  1188. name: 微乐四冲
  1189. conf:
  1190. - daylimit: 4
  1191. money: 4915
  1192. - daylimit: 10
  1193. money: 6550
  1194. - daylimit: 18
  1195. money: 7370
  1196. - daylimit: 99999999
  1197. money: 7860
  1198. 372-818:
  1199. name: 微乐挖坑
  1200. conf:
  1201. - daylimit: 4
  1202. money: 5230
  1203. - daylimit: 10
  1204. money: 6975
  1205. - daylimit: 18
  1206. money: 7845
  1207. - daylimit: 99999999
  1208. money: 8370
  1209. 374-818:
  1210. name: 微乐三代
  1211. conf:
  1212. - daylimit: 4
  1213. money: 2885
  1214. - daylimit: 10
  1215. money: 3845
  1216. - daylimit: 18
  1217. money: 4325
  1218. - daylimit: 99999999
  1219. money: 4615
  1220. 128-818:
  1221. name: 微乐南昌麻将
  1222. conf:
  1223. - daylimit: 4
  1224. money: 8585
  1225. - daylimit: 10
  1226. money: 11445
  1227. - daylimit: 18
  1228. money: 12880
  1229. - daylimit: 99999999
  1230. money: 13735
  1231. # 折扣debug版本v3
  1232. mall_debug_v3:
  1233. first_double_6: 90000 #首充双倍
  1234. first_double_12: 180000 #首充双倍
  1235. first_double_30: 500000 #首充双倍
  1236. first_double_50: 910000 #首充双倍
  1237. first_double_98: 1960000 #首充双倍
  1238. first_double_198: 4400000 #首充双倍
  1239. first_double_648: 16200000 #首充双倍
  1240. first_double_488: 12200000 #首充双倍
  1241. goods215: 66000 #非首充6元
  1242. goods216: 144000 #非首充12元
  1243. goods217: 390000 #非首充30元
  1244. goods218: 700000 #非首充50元
  1245. goods219: 1470000 #非首充98元
  1246. goods220: 3366000 #非首充198元
  1247. goods221: 12960000 #非首充648元
  1248. goods222: 9760000 #非首充488元
  1249. # 限购每月特惠v3 (兼容奖励版本,判断对应tag还是走goods_limit_th_month)
  1250. goods_limit_th_month_v3:
  1251. goods255: #6元限时礼包
  1252. boxname: 青铜宝箱
  1253. basebean: 60000
  1254. props:
  1255. - prop_id: 350
  1256. amount: 1
  1257. - prop_id: 272
  1258. amount: 10
  1259. - prop_id: 273
  1260. amount: 10
  1261. - prop_id: 274
  1262. amount: 10
  1263. goods256: #12元限时礼包
  1264. boxname: 黄铜宝箱
  1265. basebean: 120000
  1266. props:
  1267. - prop_id: 350
  1268. amount: 2
  1269. - prop_id: 272
  1270. amount: 20
  1271. - prop_id: 273
  1272. amount: 20
  1273. - prop_id: 274
  1274. amount: 20
  1275. goods257: #30元限时礼包
  1276. boxname: 白银宝箱
  1277. basebean: 300000
  1278. props:
  1279. - prop_id: 350
  1280. amount: 3
  1281. - prop_id: 280
  1282. amount: 10
  1283. - prop_id: 281
  1284. amount: 10
  1285. - prop_id: 275
  1286. amount: 10
  1287. - prop_id: 278
  1288. amount: 10
  1289. goods258: #50元限时礼包
  1290. boxname: 黄金宝箱
  1291. basebean: 500000
  1292. props:
  1293. - prop_id: 350
  1294. amount: 4
  1295. - prop_id: 272
  1296. amount: 30
  1297. - prop_id: 273
  1298. amount: 30
  1299. - prop_id: 274
  1300. amount: 30
  1301. goods259: #98元限时礼包
  1302. boxname: 钻石宝箱
  1303. basebean: 980000
  1304. props:
  1305. - prop_id: 351
  1306. amount: 5
  1307. - prop_id: 272
  1308. amount: 40
  1309. - prop_id: 273
  1310. amount: 40
  1311. - prop_id: 274
  1312. amount: 40
  1313. goods260: #198元限时礼包
  1314. boxname: 史诗宝箱
  1315. basebean: 1980000
  1316. props:
  1317. - prop_id: 351
  1318. amount: 6
  1319. - prop_id: 280
  1320. amount: 20
  1321. - prop_id: 281
  1322. amount: 20
  1323. - prop_id: 275
  1324. amount: 20
  1325. - prop_id: 278
  1326. amount: 20
  1327. goods261: #488元限时礼包
  1328. boxname: 至尊宝箱
  1329. basebean: 4880000
  1330. props:
  1331. - prop_id: 351
  1332. amount: 8
  1333. - prop_id: 272
  1334. amount: 60
  1335. - prop_id: 273
  1336. amount: 60
  1337. - prop_id: 274
  1338. amount: 60
  1339. goods262: #648元限时礼包
  1340. boxname: 至尊宝箱
  1341. basebean: 6480000
  1342. props:
  1343. - prop_id: 351
  1344. amount: 10
  1345. - prop_id: 280
  1346. amount: 30
  1347. - prop_id: 281
  1348. amount: 30
  1349. - prop_id: 275
  1350. amount: 30
  1351. - prop_id: 278
  1352. amount: 30
  1353. goods264: #328元限时礼包
  1354. boxname: 荣耀宝箱
  1355. basebean: 3280000
  1356. props:
  1357. - prop_id: 351
  1358. amount: 7
  1359. - prop_id: 272
  1360. amount: 50
  1361. - prop_id: 273
  1362. amount: 50
  1363. - prop_id: 274
  1364. amount: 50
  1365. goods_limit_preferential_card_v3:
  1366. th_1:
  1367. 1:
  1368. - - prop_id: 15
  1369. amount: 100000
  1370. - prop_id: 350
  1371. amount: 1
  1372. - prop_id: 360
  1373. amount: 10
  1374. - prop_id: 361
  1375. amount: 10
  1376. - prop_id: 362
  1377. amount: 10
  1378. - - prop_id: 15
  1379. amount: 100000
  1380. - prop_id: 350
  1381. amount: 1
  1382. - prop_id: 360
  1383. amount: 10
  1384. - prop_id: 361
  1385. amount: 10
  1386. - prop_id: 362
  1387. amount: 10
  1388. - - prop_id: 15
  1389. amount: 100000
  1390. - prop_id: 350
  1391. amount: 1
  1392. - prop_id: 360
  1393. amount: 10
  1394. - prop_id: 361
  1395. amount: 10
  1396. - prop_id: 362
  1397. amount: 10
  1398. 2:
  1399. - - prop_id: 15
  1400. amount: 120000
  1401. - prop_id: 350
  1402. amount: 2
  1403. - prop_id: 272
  1404. amount: 10
  1405. - prop_id: 273
  1406. amount: 10
  1407. - prop_id: 274
  1408. amount: 10
  1409. - - prop_id: 15
  1410. amount: 120000
  1411. - prop_id: 350
  1412. amount: 2
  1413. - prop_id: 272
  1414. amount: 10
  1415. - prop_id: 273
  1416. amount: 10
  1417. - prop_id: 274
  1418. amount: 10
  1419. - - prop_id: 15
  1420. amount: 120000
  1421. - prop_id: 350
  1422. amount: 2
  1423. - prop_id: 272
  1424. amount: 10
  1425. - prop_id: 273
  1426. amount: 10
  1427. - prop_id: 274
  1428. amount: 10
  1429. 3:
  1430. - - prop_id: 15
  1431. amount: 150000
  1432. - prop_id: 350
  1433. amount: 3
  1434. - prop_id: 275
  1435. amount: 10
  1436. - prop_id: 278
  1437. amount: 10
  1438. - prop_id: 280
  1439. amount: 10
  1440. - prop_id: 281
  1441. amount: 10
  1442. - - prop_id: 15
  1443. amount: 150000
  1444. - prop_id: 350
  1445. amount: 3
  1446. - prop_id: 275
  1447. amount: 10
  1448. - prop_id: 278
  1449. amount: 10
  1450. - prop_id: 280
  1451. amount: 10
  1452. - prop_id: 281
  1453. amount: 10
  1454. - - prop_id: 15
  1455. amount: 150000
  1456. - prop_id: 350
  1457. amount: 3
  1458. - prop_id: 275
  1459. amount: 10
  1460. - prop_id: 278
  1461. amount: 10
  1462. - prop_id: 280
  1463. amount: 10
  1464. - prop_id: 281
  1465. amount: 10
  1466. th_2:
  1467. 1:
  1468. - - prop_id: 15
  1469. amount: 220000
  1470. - prop_id: 351
  1471. amount: 2
  1472. - prop_id: 360
  1473. amount: 20
  1474. - prop_id: 361
  1475. amount: 20
  1476. - prop_id: 362
  1477. amount: 20
  1478. - - prop_id: 15
  1479. amount: 220000
  1480. - prop_id: 351
  1481. amount: 2
  1482. - prop_id: 360
  1483. amount: 20
  1484. - prop_id: 361
  1485. amount: 20
  1486. - prop_id: 362
  1487. amount: 20
  1488. - - prop_id: 15
  1489. amount: 220000
  1490. - prop_id: 351
  1491. amount: 2
  1492. - prop_id: 360
  1493. amount: 20
  1494. - prop_id: 361
  1495. amount: 20
  1496. - prop_id: 362
  1497. amount: 20
  1498. 2:
  1499. - - prop_id: 15
  1500. amount: 300000
  1501. - prop_id: 351
  1502. amount: 3
  1503. - prop_id: 272
  1504. amount: 10
  1505. - prop_id: 273
  1506. amount: 10
  1507. - prop_id: 274
  1508. amount: 10
  1509. - - prop_id: 15
  1510. amount: 300000
  1511. - prop_id: 351
  1512. amount: 3
  1513. - prop_id: 272
  1514. amount: 10
  1515. - prop_id: 273
  1516. amount: 10
  1517. - prop_id: 274
  1518. amount: 10
  1519. - - prop_id: 15
  1520. amount: 300000
  1521. - prop_id: 351
  1522. amount: 3
  1523. - prop_id: 272
  1524. amount: 10
  1525. - prop_id: 273
  1526. amount: 10
  1527. - prop_id: 274
  1528. amount: 10
  1529. 3:
  1530. - - prop_id: 15
  1531. amount: 400000
  1532. - prop_id: 351
  1533. amount: 4
  1534. - prop_id: 275
  1535. amount: 10
  1536. - prop_id: 278
  1537. amount: 10
  1538. - prop_id: 280
  1539. amount: 10
  1540. - prop_id: 281
  1541. amount: 10
  1542. - - prop_id: 15
  1543. amount: 400000
  1544. - prop_id: 351
  1545. amount: 4
  1546. - prop_id: 275
  1547. amount: 10
  1548. - prop_id: 278
  1549. amount: 10
  1550. - prop_id: 280
  1551. amount: 10
  1552. - prop_id: 281
  1553. amount: 10
  1554. - - prop_id: 15
  1555. amount: 400000
  1556. - prop_id: 351
  1557. amount: 4
  1558. - prop_id: 275
  1559. amount: 10
  1560. - prop_id: 278
  1561. amount: 10
  1562. - prop_id: 280
  1563. amount: 10
  1564. - prop_id: 281
  1565. amount: 10
  1566. goods_limit_preferential_card_v9:
  1567. th_1:
  1568. 1:
  1569. - - prop_id: 15
  1570. amount: 60000
  1571. - prop_id: 350
  1572. amount: 2
  1573. - prop_id: 351
  1574. amount: 1
  1575. 2:
  1576. - - prop_id: 15
  1577. amount: 66000
  1578. - prop_id: 350
  1579. amount: 3
  1580. - prop_id: 351
  1581. amount: 2
  1582. 3:
  1583. - - prop_id: 15
  1584. amount: 85000
  1585. - prop_id: 350
  1586. amount: 5
  1587. - prop_id: 351
  1588. amount: 3
  1589. th_2:
  1590. 1:
  1591. - - prop_id: 15
  1592. amount: 132000
  1593. - prop_id: 350
  1594. amount: 4
  1595. - prop_id: 351
  1596. amount: 2
  1597. 2:
  1598. - - prop_id: 15
  1599. amount: 150000
  1600. - prop_id: 350
  1601. amount: 6
  1602. - prop_id: 351
  1603. amount: 4
  1604. 3:
  1605. - - prop_id: 15
  1606. amount: 200000
  1607. - prop_id: 350
  1608. amount: 10
  1609. - prop_id: 351
  1610. amount: 6
  1611. goods_limit_preferential_card_v10:
  1612. th_1:
  1613. 1:
  1614. - - prop_id: 15
  1615. amount: 60000
  1616. - prop_id: 350
  1617. amount: 3
  1618. - prop_id: 351
  1619. amount: 3
  1620. 2:
  1621. - - prop_id: 15
  1622. amount: 60000
  1623. - prop_id: 350
  1624. amount: 4
  1625. - prop_id: 351
  1626. amount: 4
  1627. 3:
  1628. - - prop_id: 15
  1629. amount: 60000
  1630. - prop_id: 350
  1631. amount: 6
  1632. - prop_id: 351
  1633. amount: 6
  1634. th_2:
  1635. 1:
  1636. - - prop_id: 15
  1637. amount: 120000
  1638. - prop_id: 350
  1639. amount: 6
  1640. - prop_id: 351
  1641. amount: 6
  1642. 2:
  1643. - - prop_id: 15
  1644. amount: 120000
  1645. - prop_id: 350
  1646. amount: 8
  1647. - prop_id: 351
  1648. amount: 8
  1649. 3:
  1650. - - prop_id: 15
  1651. amount: 120000
  1652. - prop_id: 350
  1653. amount: 12
  1654. - prop_id: 351
  1655. amount: 12
  1656. goods_limit_th_month_v9:
  1657. goods255: #6元限时礼包
  1658. boxname: 青铜宝箱
  1659. basebean: 60000
  1660. props:
  1661. - prop_id: 350
  1662. amount: 1
  1663. goods256: #12元限时礼包
  1664. boxname: 黄铜宝箱
  1665. basebean: 120000
  1666. props:
  1667. - prop_id: 350
  1668. amount: 2
  1669. - prop_id: 351
  1670. amount: 1
  1671. goods257: #30元限时礼包
  1672. boxname: 白银宝箱
  1673. basebean: 300000
  1674. props:
  1675. - prop_id: 350
  1676. amount: 3
  1677. - prop_id: 351
  1678. amount: 2
  1679. goods258: #50元限时礼包
  1680. boxname: 黄金宝箱
  1681. basebean: 500000
  1682. props:
  1683. - prop_id: 350
  1684. amount: 6
  1685. - prop_id: 351
  1686. amount: 3
  1687. goods259: #98元限时礼包
  1688. boxname: 钻石宝箱
  1689. basebean: 980000
  1690. props:
  1691. - prop_id: 350
  1692. amount: 12
  1693. - prop_id: 351
  1694. amount: 6
  1695. goods260: #198元限时礼包
  1696. boxname: 史诗宝箱
  1697. basebean: 1980000
  1698. props:
  1699. - prop_id: 350
  1700. amount: 24
  1701. - prop_id: 351
  1702. amount: 12
  1703. goods262: #648元限时礼包
  1704. boxname: 至尊宝箱
  1705. basebean: 6480000
  1706. props:
  1707. - prop_id: 350
  1708. amount: 108
  1709. - prop_id: 351
  1710. amount: 48
  1711. goods264: #328元限时礼包
  1712. boxname: 荣耀宝箱
  1713. basebean: 3280000
  1714. props:
  1715. - prop_id: 350
  1716. amount: 48
  1717. - prop_id: 351
  1718. amount: 24
  1719. # 限购每月特惠v11 (兼容奖励版本,判断对应tag还是走goods_limit_th_month)
  1720. goods_limit_th_month_v11:
  1721. goods255: #6元限时礼包
  1722. limit: 3
  1723. props:
  1724. - prop_id: 15
  1725. amount: 100000
  1726. - prop_id: 350
  1727. amount: 1
  1728. goods256: #12元限时礼包
  1729. limit: 3
  1730. props:
  1731. - prop_id: 15
  1732. amount: 240000
  1733. - prop_id: 350
  1734. amount: 2
  1735. - prop_id: 351
  1736. amount: 1
  1737. goods257: #30元限时礼包
  1738. limit: 3
  1739. props:
  1740. - prop_id: 15
  1741. amount: 750000
  1742. - prop_id: 350
  1743. amount: 4
  1744. - prop_id: 351
  1745. amount: 2
  1746. goods259: #98元限时礼包
  1747. limit: 3
  1748. props:
  1749. - prop_id: 15
  1750. amount: 2800000
  1751. - prop_id: 350
  1752. amount: 12
  1753. - prop_id: 351
  1754. amount: 8
  1755. goods260: #198元限时礼包
  1756. limit: 3
  1757. props:
  1758. - prop_id: 15
  1759. amount: 6600000
  1760. - prop_id: 350
  1761. amount: 24
  1762. - prop_id: 351
  1763. amount: 16
  1764. goods262: #648元限时礼包
  1765. limit: 3
  1766. props:
  1767. - prop_id: 15
  1768. amount: 32400000
  1769. - prop_id: 350
  1770. amount: 108
  1771. - prop_id: 351
  1772. amount: 48
  1773. goods264: #328元限时礼包
  1774. limit: 3
  1775. props:
  1776. - prop_id: 15
  1777. amount: 13120000
  1778. - prop_id: 350
  1779. amount: 48
  1780. - prop_id: 351
  1781. amount: 24
  1782. mall_ms:
  1783. 4: {new_ms_6: 6, new_ms_30: 32, new_ms_98: 118, new_ms_198: 258}
  1784. 5: {new_ms_6: 12, new_ms_30: 65, new_ms_98: 216, new_ms_198: 456}
  1785. 6: {new_ms_6: 6, new_ms_30: 36, new_ms_98: 128, new_ms_198: 298}
  1786. 7: {new_ms_6: 6, new_ms_30: 33, new_ms_98: 118, new_ms_198: 258}
  1787. 8: {new_ms_6: 3, new_ms_30: 18, new_ms_98: 68, new_ms_328: 268, new_ms_648: 648}
  1788. 11: {new_ms_6: 6, new_ms_30: 37, new_ms_98: 140, new_ms_328: 546, new_ms_648: 1296}
  1789. mall_zd:
  1790. 4: {new_zd_6: 6, new_zd_30: 32, new_zd_98: 118, new_zd_198: 258}
  1791. 5: {new_zd_6: 12, new_zd_30: 65, new_zd_98: 216, new_zd_198: 456}
  1792. 6: {new_zd_6: 6, new_zd_30: 36, new_zd_98: 128, new_zd_198: 298}
  1793. 7: {new_zd_6: 6, new_zd_30: 33, new_zd_98: 118, new_zd_198: 258}
  1794. 8: {new_zd_6: 3, new_zd_30: 18, new_zd_98: 68, new_zd_328: 268, new_zd_648: 648}
  1795. 11: {new_zd_6: 6, new_zd_30: 37, new_zd_98: 140, new_zd_328: 546, new_zd_648: 1296}
  1796. new_month_card:
  1797. new_goods287: {day: 30}
  1798. new_goods288: {day: 30}
  1799. new_week_card_sc:
  1800. - prop_id: 15
  1801. amount: 460000
  1802. - prop_id: 350
  1803. amount: 7
  1804. - prop_id: 354
  1805. amount: 1
  1806. - prop_id: 351
  1807. amount: 1
  1808. - prop_id: 274
  1809. amount: 10
  1810. - prop_id: 273
  1811. amount: 10
  1812. - prop_id: 272
  1813. amount: 10
  1814. ###################################【ID1016207】【大厅+web】商城计费点调整 ###################################
  1815. #豆豆商城--预发布版本,自己往上加版本
  1816. mall_beans_preview:
  1817. 12:
  1818. goods330: 300000 #3元豆豆
  1819. goods297: 600000 #6元豆豆
  1820. goods298: 1200000 #12元豆豆
  1821. goods299: 3000000 #30元豆豆
  1822. goods300: 9800000 #98元豆豆
  1823. goods301: 32800000 #328元豆豆
  1824. goods302: 64800000 #648元豆豆
  1825. 13:
  1826. goods330: 300000 #3元豆豆
  1827. goods297: 600000 #6元豆豆
  1828. goods298: 1200000 #12元豆豆
  1829. goods299: 3000000 #30元豆豆
  1830. goods300: 9800000 #98元豆豆
  1831. goods301: 32800000 #328元豆豆
  1832. goods302: 64800000 #648元豆豆
  1833. 26:
  1834. goods297: 6700000 #6元豆豆
  1835. goods298: 15000000 #12元豆豆
  1836. goods299: 43000000 #30元豆豆
  1837. goods300: 160000000 #98元豆豆
  1838. goods301: 800000000 #328元豆豆
  1839. goods302: 2000000000 #648元豆豆
  1840. goods330: 3000000 #3元豆豆
  1841. 27:
  1842. goods297: 8000000 #6元豆豆
  1843. goods298: 17000000 #12元豆豆
  1844. goods299: 50000000 #30元豆豆
  1845. goods300: 195000000 #98元豆豆
  1846. goods301: 1100000000 #328元豆豆
  1847. goods302: 3250000000 #648元豆豆
  1848. goods330: 3000000 #3元豆豆
  1849. 28:
  1850. goods330: 3000000 #3元豆豆
  1851. goods297: 8000000 #6元豆豆
  1852. goods298: 17000000 #12元豆豆
  1853. goods299: 50000000 #30元豆豆
  1854. goods331: 100000000 #50元豆豆
  1855. goods300: 245000000 #98元豆豆
  1856. goods301: 1640000000 #328元豆豆
  1857. goods302: 6480000000 #648元豆豆
  1858. 31:
  1859. goods330: 3000000 #3元豆豆
  1860. goods297: 6000000 #6元豆豆
  1861. goods298: 13333000 #12元豆豆
  1862. goods299: 35294000 #30元豆豆
  1863. goods331: 62500000 #50元豆豆
  1864. goods300: 140000000 #98元豆豆
  1865. goods301: 546667000 #328元豆豆
  1866. goods302: 1296000000 #648元豆豆
  1867. 32:
  1868. goods330: 3000000 #3元豆豆
  1869. goods297: 6700000 #6元豆豆
  1870. goods298: 15000000 #12元豆豆
  1871. goods299: 43000000 #30元豆豆
  1872. goods331: 83000000 #50元豆豆
  1873. goods300: 196000000 #98元豆豆
  1874. goods304: 600000000 #198元豆豆
  1875. goods301: 1300000000 #328元豆豆
  1876. goods302: 3200000000 #648元豆豆
  1877. 33:
  1878. goods332: 1000000 #1元豆豆
  1879. goods330: 3000000 #3元豆豆
  1880. goods297: 8000000 #6元豆豆
  1881. goods298: 25000000 #12元豆豆
  1882. goods299: 75000000 #30元豆豆
  1883. goods331: 200000000 #50元豆豆
  1884. goods300: 600000000 #98元豆豆
  1885. goods304: 1800000000 #198元豆豆
  1886. goods301: 4000000000 #328元豆豆
  1887. goods302: 12000000000 #648元豆豆
  1888. 36:
  1889. goods298: 1200000 #120钻石豆豆
  1890. goods331: 5000000000 #500钻石豆豆
  1891. goods334: 600000 #600钻石豆豆
  1892. goods300: 9800000 #980钻石豆豆
  1893. goods339: 10000000000 #1000钻石豆豆
  1894. goods336: 1500000 #1500钻石豆豆
  1895. goods304: 19800000000 #1980钻石豆豆
  1896. goods337: 32800000 #3000钻石豆豆
  1897. goods301: 32800000 #3280钻石豆豆
  1898. goods338: 64800000 #6000钻石豆豆
  1899. goods302: 64800000 #6480钻石豆豆
  1900. goods297: 600000000 #60钻石豆豆
  1901. goods299: 300000000 #300钻石豆豆
  1902. goods329: 100000000 #10钻石豆豆
  1903. goods330: 300000000 #30钻石豆豆
  1904. goods333: 1000000000 #100钻石豆豆
  1905. goods335: 6000000000 #900钻石豆豆
  1906. goods337: 9000000000
  1907. goods338: 15000000000
  1908. goods339: 30000000000
  1909. goods340: 60000000000
  1910. #每日特惠--预发布版本,自己往上加版本
  1911. day_th_preview:
  1912. 12:
  1913. goods291: #每日特惠6元
  1914. - prop_id: 15
  1915. amount: 130000
  1916. - prop_id: 350
  1917. amount: 2
  1918. - prop_id: 411
  1919. amount: 2
  1920. goods292: #每日特惠12元
  1921. - prop_id: 15
  1922. amount: 320000
  1923. - prop_id: 350
  1924. amount: 3
  1925. - prop_id: 411
  1926. amount: 4
  1927. goods293: #每日特惠50元
  1928. - prop_id: 15
  1929. amount: 1600000
  1930. - prop_id: 350
  1931. amount: 5
  1932. - prop_id: 411
  1933. amount: 8
  1934. #每周特惠--预发布版本,自己往上加版本
  1935. week_th_preview:
  1936. 12:
  1937. goods294: #每周特惠98元
  1938. - prop_id: 15
  1939. amount: 3200000
  1940. - prop_id: 350
  1941. amount: 10
  1942. - prop_id: 411
  1943. amount: 20
  1944. goods295: #每周特惠198元
  1945. - prop_id: 15
  1946. amount: 6200000
  1947. - prop_id: 350
  1948. amount: 20
  1949. - prop_id: 411
  1950. amount: 48
  1951. goods296: #每周特惠328元
  1952. - prop_id: 15
  1953. amount: 13000000
  1954. - prop_id: 350
  1955. amount: 30
  1956. - prop_id: 411
  1957. amount: 30
  1958. goods311: #每周特惠648元
  1959. - prop_id: 15
  1960. amount: 32000000
  1961. - prop_id: 350
  1962. amount: 50
  1963. - prop_id: 411
  1964. amount: 40
  1965. resurrect_gift: # 复活礼包免输次数&再胡加成
  1966. goods_resurrect_1_1: # 川麻第一档普通
  1967. no_lose_times: 1
  1968. again_win_addition: 0
  1969. goods_resurrect_1_2: # 川麻第一档精英
  1970. no_lose_times: 1
  1971. again_win_addition: 0
  1972. goods_resurrect_1_3: # 川麻第一档土豪
  1973. no_lose_times: 1
  1974. again_win_addition: 0
  1975. goods_resurrect_1_4: # 川麻第一档至尊
  1976. no_lose_times: 1
  1977. again_win_addition: 0
  1978. goods_resurrect_1_5: # 川麻第一档大师
  1979. no_lose_times: 1
  1980. again_win_addition: 0
  1981. goods_resurrect_1_6: # 川麻第一档王牌
  1982. no_lose_times: 1
  1983. again_win_addition: 0
  1984. goods_resurrect_2_1: # 川麻第二档普通
  1985. no_lose_times: 2
  1986. again_win_addition: 50
  1987. goods_resurrect_2_2: # 川麻第二档精英
  1988. no_lose_times: 2
  1989. again_win_addition: 50
  1990. goods_resurrect_2_3: # 川麻第二档土豪
  1991. no_lose_times: 2
  1992. again_win_addition: 50
  1993. goods_resurrect_2_4: # 川麻第二档至尊
  1994. no_lose_times: 2
  1995. again_win_addition: 50
  1996. goods_resurrect_2_5: # 川麻第二档大师
  1997. no_lose_times: 2
  1998. again_win_addition: 50
  1999. goods_resurrect_2_6: # 川麻第二档王牌
  2000. no_lose_times: 2
  2001. again_win_addition: 50
  2002. goods_resurrect_3_1: # 川麻第三档普通
  2003. no_lose_times: 3
  2004. again_win_addition: 100
  2005. goods_resurrect_3_2: # 川麻第三档精英
  2006. no_lose_times: 3
  2007. again_win_addition: 100
  2008. goods_resurrect_3_3: # 川麻第三档土豪
  2009. no_lose_times: 3
  2010. again_win_addition: 100
  2011. goods_resurrect_3_4: # 川麻第三档至尊
  2012. no_lose_times: 3
  2013. again_win_addition: 100
  2014. goods_resurrect_3_5: # 川麻第三档大师
  2015. no_lose_times: 3
  2016. again_win_addition: 100
  2017. goods_resurrect_3_6: # 川麻第三档王牌
  2018. no_lose_times: 3
  2019. again_win_addition: 100
  2020. goods_ddz_resurrect_1_1: # 斗地主第一档普通
  2021. no_lose_times: 1
  2022. again_win_addition: 0
  2023. goods_ddz_resurrect_1_2: # 斗地主第一档精英
  2024. no_lose_times: 1
  2025. again_win_addition: 0
  2026. goods_ddz_resurrect_1_3: # 斗地主第一档土豪
  2027. no_lose_times: 1
  2028. again_win_addition: 0
  2029. goods_ddz_resurrect_1_4: # 斗地主第一档至尊
  2030. no_lose_times: 1
  2031. again_win_addition: 0
  2032. goods_ddz_resurrect_1_5: # 斗地主第一档大师
  2033. no_lose_times: 1
  2034. again_win_addition: 0
  2035. goods_ddz_resurrect_1_6: # 斗地主第一档王牌
  2036. no_lose_times: 1
  2037. again_win_addition: 0
  2038. goods_ddz_resurrect_2_1: # 斗地主第二档普通
  2039. no_lose_times: 2
  2040. again_win_addition: 50
  2041. goods_ddz_resurrect_2_2: # 斗地主第二档精英
  2042. no_lose_times: 2
  2043. again_win_addition: 50
  2044. goods_ddz_resurrect_2_3: # 斗地主第二档土豪
  2045. no_lose_times: 2
  2046. again_win_addition: 50
  2047. goods_ddz_resurrect_2_4: # 斗地主第二档至尊
  2048. no_lose_times: 2
  2049. again_win_addition: 50
  2050. goods_ddz_resurrect_2_5: # 斗地主第二档大师
  2051. no_lose_times: 2
  2052. again_win_addition: 50
  2053. goods_ddz_resurrect_2_6: # 斗地主第二档王牌
  2054. no_lose_times: 2
  2055. again_win_addition: 50
  2056. goods_ddz_resurrect_3_1: # 斗地主第三档普通
  2057. no_lose_times: 3
  2058. again_win_addition: 100
  2059. goods_ddz_resurrect_3_2: # 斗地主第三档精英
  2060. no_lose_times: 3
  2061. again_win_addition: 100
  2062. goods_ddz_resurrect_3_3: # 斗地主第三档土豪
  2063. no_lose_times: 3
  2064. again_win_addition: 100
  2065. goods_ddz_resurrect_3_4: # 斗地主第三档至尊
  2066. no_lose_times: 3
  2067. again_win_addition: 100
  2068. goods_ddz_resurrect_3_5: # 斗地主第三档大师
  2069. no_lose_times: 3
  2070. again_win_addition: 100
  2071. goods_ddz_resurrect_3_6: # 斗地主第三档王牌
  2072. no_lose_times: 3
  2073. again_win_addition: 100
  2074. #首购计费点
  2075. first_recharge_goods:
  2076. "goods_diamond_first_3": true
  2077. "goods_diamond_first_6": true
  2078. "goods_diamond_first_12": true
  2079. "goods_diamond_first_30": true
  2080. "goods_diamond_first_50": true
  2081. "goods_diamond_first_98": true
  2082. "goods_diamond_first_198": true
  2083. "goods_diamond_first_328": true
  2084. "goods_diamond_first_648": true
  2085. "goods_diamond_first_1200": true
  2086. "goods_diamond_first_1998": true
  2087. resurrect_gift_props:
  2088. bhz:
  2089. goods_resurrect_1_1:
  2090. props:
  2091. - prop_id: 15
  2092. amount: 90000
  2093. goods_resurrect_1_2:
  2094. props:
  2095. - prop_id: 15
  2096. amount: 180000
  2097. goods_resurrect_1_3:
  2098. props:
  2099. - prop_id: 15
  2100. amount: 360000
  2101. goods_resurrect_1_4:
  2102. props:
  2103. - prop_id: 15
  2104. amount: 900000
  2105. goods_resurrect_1_5:
  2106. props:
  2107. - prop_id: 15
  2108. amount: 2970000
  2109. goods_resurrect_1_6:
  2110. props:
  2111. - prop_id: 15
  2112. amount: 6000000
  2113. goods_resurrect_2_1:
  2114. props:
  2115. - prop_id: 15
  2116. amount: 240000
  2117. goods_resurrect_2_2:
  2118. props:
  2119. - prop_id: 15
  2120. amount: 480000
  2121. goods_resurrect_2_3:
  2122. props:
  2123. - prop_id: 15
  2124. amount: 1200000
  2125. goods_resurrect_2_4:
  2126. props:
  2127. - prop_id: 15
  2128. amount: 2000000
  2129. goods_resurrect_2_5:
  2130. props:
  2131. - prop_id: 15
  2132. amount: 7920000
  2133. goods_resurrect_2_6:
  2134. props:
  2135. - prop_id: 15
  2136. amount: 13100000
  2137. goods_resurrect_3_1:
  2138. props:
  2139. - prop_id: 15
  2140. amount: 600000
  2141. goods_resurrect_3_2:
  2142. props:
  2143. - prop_id: 15
  2144. amount: 1500000
  2145. goods_resurrect_3_3:
  2146. props:
  2147. - prop_id: 15
  2148. amount: 2500000
  2149. goods_resurrect_3_4:
  2150. props:
  2151. - prop_id: 15
  2152. amount: 4900000
  2153. goods_resurrect_3_5:
  2154. props:
  2155. - prop_id: 15
  2156. amount: 16500000
  2157. goods_resurrect_3_6:
  2158. props:
  2159. - prop_id: 15
  2160. amount: 32500000
  2161. # 返还礼包兼容版本(【大厅】返还礼包调整8.19)
  2162. fanhuan_gift:
  2163. 15:
  2164. goods_fh_3:
  2165. top_beans: 630000 # 最高限额
  2166. base_beans: 30000 # 基础赠送
  2167. fh_beans: 180000 # 最高返还
  2168. goods_fh_6:
  2169. top_beans: 1260000 # 最高限额
  2170. base_beans: 60000 # 基础赠送
  2171. fh_beans: 360000 # 最高返还
  2172. goods_fh_12:
  2173. top_beans: 2520000 # 最高限额
  2174. base_beans: 120000 # 基础赠送
  2175. fh_beans: 720000 # 最高返还
  2176. goods_fh_24:
  2177. top_beans: 5100000 # 最高限额
  2178. base_beans: 240000 # 基础赠送
  2179. fh_beans: 1500000 # 最高返还
  2180. goods_fh_50:
  2181. top_beans: 10500000 # 最高限额
  2182. base_beans: 500000 # 基础赠送
  2183. fh_beans: 3000000 # 最高返还
  2184. goods_fh_98:
  2185. top_beans: 20700000 # 最高限额
  2186. base_beans: 980000 # 基础赠送
  2187. fh_beans: 6000000 # 最高返还
  2188. goods_fh_198:
  2189. top_beans: 41700000 # 最高限额
  2190. base_beans: 1980000 # 基础赠送
  2191. fh_beans: 12000000 # 最高返还
  2192. goods_fh_328:
  2193. top_beans: 73200000 # 最高限额
  2194. base_beans: 3280000 # 基础赠送
  2195. fh_beans: 24000000 # 最高返还
  2196. goods_fh_600:
  2197. top_beans: 138000000 # 最高限额
  2198. base_beans: 6000000 # 基础赠送
  2199. fh_beans: 48000000 # 最高返还
  2200. goods_fh_1200:
  2201. top_beans: 300000000 # 最高限额
  2202. base_beans: 12000000 # 基础赠送
  2203. fh_beans: 120000000 # 最高返还
  2204. 17:
  2205. goods_fh_3:
  2206. top_beans: 750000 # 最高限额
  2207. base_beans: 30000 # 基础赠送
  2208. fh_beans: 300000 # 最高返还
  2209. goods_fh_6:
  2210. top_beans: 1500000 # 最高限额
  2211. base_beans: 60000 # 基础赠送
  2212. fh_beans: 600000 # 最高返还
  2213. goods_fh_12:
  2214. top_beans: 3000000 # 最高限额
  2215. base_beans: 120000 # 基础赠送
  2216. fh_beans: 1200000 # 最高返还
  2217. goods_fh_24:
  2218. top_beans: 6100000 # 最高限额
  2219. base_beans: 240000 # 基础赠送
  2220. fh_beans: 2500000 # 最高返还
  2221. goods_fh_50:
  2222. top_beans: 12500000 # 最高限额
  2223. base_beans: 500000 # 基础赠送
  2224. fh_beans: 5000000 # 最高返还
  2225. goods_fh_98:
  2226. top_beans: 24700000 # 最高限额
  2227. base_beans: 980000 # 基础赠送
  2228. fh_beans: 10000000 # 最高返还
  2229. goods_fh_198:
  2230. top_beans: 49700000 # 最高限额
  2231. base_beans: 1980000 # 基础赠送
  2232. fh_beans: 20000000 # 最高返还
  2233. goods_fh_328:
  2234. top_beans: 89200000 # 最高限额
  2235. base_beans: 3280000 # 基础赠送
  2236. fh_beans: 24000000 # 最高返还
  2237. goods_fh_600:
  2238. top_beans: 170000000 # 最高限额
  2239. base_beans: 6000000 # 基础赠送
  2240. fh_beans: 80000000 # 最高返还
  2241. goods_fh_1200:
  2242. top_beans: 340000000 # 最高限额
  2243. base_beans: 12000000 # 基础赠送
  2244. fh_beans: 160000000 # 最高返还
  2245. 18:
  2246. goods_fh_3:
  2247. top_beans: 750000 # 最高限额
  2248. base_beans: 30000 # 基础赠送
  2249. fh_beans: 300000 # 最高返还
  2250. goods_fh_6:
  2251. top_beans: 1700000 # 最高限额
  2252. base_beans: 60000 # 基础赠送
  2253. fh_beans: 800000 # 最高返还
  2254. goods_fh_12:
  2255. top_beans: 3800000 # 最高限额
  2256. base_beans: 120000 # 基础赠送
  2257. fh_beans: 2000000 # 最高返还
  2258. goods_fh_30:
  2259. top_beans: 9500000 # 最高限额
  2260. base_beans: 300000 # 基础赠送
  2261. fh_beans: 5000000 # 最高返还
  2262. goods_fh_50:
  2263. top_beans: 19500000 # 最高限额
  2264. base_beans: 500000 # 基础赠送
  2265. fh_beans: 12000000 # 最高返还
  2266. goods_fh_98:
  2267. top_beans: 44700000 # 最高限额
  2268. base_beans: 980000 # 基础赠送
  2269. fh_beans: 30000000 # 最高返还
  2270. goods_fh_198:
  2271. top_beans: 129700000 # 最高限额
  2272. base_beans: 1980000 # 基础赠送
  2273. fh_beans: 100000000 # 最高返还
  2274. goods_fh_328:
  2275. top_beans: 349200000 # 最高限额
  2276. base_beans: 3280000 # 基础赠送
  2277. fh_beans: 300000000 # 最高返还
  2278. goods_fh_600:
  2279. top_beans: 690000000 # 最高限额
  2280. base_beans: 6000000 # 基础赠送
  2281. fh_beans: 600000000 # 最高返还
  2282. #单独计费的 is_wechat_pay_replace_pass_go
  2283. is_wechat_pay_replace_pass_go:
  2284. "goods310": true
  2285. dressup:
  2286. goods_dressup_107: { day: 7 } #使用期限 -1不限天数
  2287. goods_dressup_206: { day: 7 }
  2288. #### 复活礼包改成rmb直接购买涉及到的相关计费点 20230627 ####
  2289. fhlb_cny_goods: ["fhlb_cny_goods_1","fhlb_cny_goods_3","fhlb_cny_goods_6","fhlb_cny_goods_12","fhlb_cny_goods_30","fhlb_cny_goods_50","fhlb_cny_goods_98","fhlb_cny_goods_198","fhlb_cny_goods_328","fhlb_cny_goods_648"]