jh-admin/addon/saas/event/DivideAccounts.php

25 lines
667 B
PHP

<?php
/**
* SaaSMall商城系统 - 团队十年电商经验汇集巨献!
* =========================================================
* Copy right 2019-2029 成都SAAS云科技有限公司, 保留所有权利。
* ----------------------------------------------
* 官方网址: https://www.gobuysaas.com
* =========================================================
*/
namespace addon\saas\event;
use addon\saas\model\DivideAccounts as Accounts;
class DivideAccounts
{
public function handle($param = [])
{
try {
return (new Accounts())->getAccounts($param);
} catch (\Exception $e) {
return [];
}
}
}