mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2026-01-19 17:58:11 +00:00
19 lines
475 B
PHP
19 lines
475 B
PHP
<?php
|
|
return [
|
|
//充值成功通知,站点端发送
|
|
'recharge_success' => [
|
|
'key' => 'recharge_success',
|
|
'receiver_type' => 1,
|
|
'name' => '充值成功通知',
|
|
'title' => '会员充值成功后发送',
|
|
'async' => true,
|
|
'variable' => [
|
|
'price' => '充值金额',
|
|
'balance' => '充值后账户',
|
|
'time' => '充值时间',
|
|
'trade_no' => '交易单号'
|
|
],
|
|
]
|
|
|
|
];
|