| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- namespace App\Module\Fund\Services;
- use App\Module\Fund\Service\User;
- /**
- * Class Task
- *
- * @package App\Logic\Fund
- */
- class TaskService
- {
- /**
- * 检查和创建用户账户
- *
- * @param $userId
- * @return void
- * @throws \Exception
- */
- static public function checkCreateUAccoun($userId)
- {
- $list = AccountService::getFundsDesc();
- // dump($userId,$list);
- foreach ($list as $fundId => $name) {
- $ac = User::get_account($userId, $fundId,true);
- }
- }
- public function checkLog()
- {
- //@todo 验证日志
- }
- }
|