wallet.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. /**
  3. * 钱包类型数组
  4. */
  5. return [
  6. 'logtype' => [
  7. 1 => '系统调节',//gold + -
  8. 10 => '金币充值',//gold +
  9. 11 => '视频通话',//gold - ,jewel -
  10. 12 => '语音通话',//gold - ,jewel -
  11. 13 => '聊天', //gold - ,jewel -
  12. 14 => '赠送礼物',//gold - ,jewel -
  13. /////////////////////////////////////
  14. 2 => '系统调节',//jewel + -
  15. 21 => '视频通话',//jewel+
  16. 22 => '语音通话',//jewel+
  17. 23 => '聊天', //jewel+
  18. 24 => '获得礼物',//jewel +
  19. 30 => '提现', //jewel-
  20. 31 => '提现拒绝返回', //jewel+
  21. 32 => '完成个人任务',//jewel +
  22. 33 => '签到奖励',//jewel +
  23. ///////////
  24. 41 => '好友充值',//jewel + 充值的计划任务触发
  25. 42 => '好友提现',//jewel + 提现审核通过触发
  26. ///////////////////////////////////////////////
  27. 5 => '系统调节', // agentjewel + -
  28. 51 => '充值超推收益',//agentjewel + 充值的计划任务触发
  29. 52 => '收益超推收益',//agentjewel + 收益的计划任务触发
  30. 55 => '提现',//agentjewel -
  31. 56 => '提现拒绝返回',//agentjewel +
  32. ],
  33. 'moneyname' => [
  34. 'gold' => '充值账户',
  35. 'jewel' => '收入账户',
  36. 'agentjewel' => '代理收益账户',
  37. ],
  38. ];