param.yaml 53 KB

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