20 lines
376 B
PHP
20 lines
376 B
PHP
<?php
|
|
|
|
namespace addon\topic\event;
|
|
|
|
use addon\topic\model\Account;
|
|
|
|
class TopicActivityOrderPay
|
|
{
|
|
public function handle($data = [])
|
|
{
|
|
try {
|
|
$account_model = new Account();
|
|
$res = $account_model->SeparateAccounts($data);
|
|
return $res;
|
|
} catch (\Exception $e) {
|
|
return $e->getMessage();
|
|
}
|
|
}
|
|
}
|