123456789101112131415161718192021222324252627282930 |
- <?php
- namespace App\Http\Controllers\Client;
- use App\Http\Controllers\Controller;
- use App\Services\Client\TeamService;
- use Auth;
- /**
- * @group 用户端
- *
- * 团队相关的API接口
- */
- class TeamController extends Controller
- {
- protected TeamService $service;
- public function __construct(TeamService $service)
- {
- $this->service = $service;
- }
- /**
- * 获取我的团队列表
- */
- public function list()
- {
- return $this->service->getTeamList(Auth::user()->id);
- }
- }
|