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