123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- namespace app\controller\api\v1\work;
- use app\services\work\WorkClientServices;
- class ClientController extends BaseWorkController
- {
-
- public function __construct(WorkClientServices $services)
- {
- parent::__construct();
- $this->service = $services;
- }
-
- public function getClientInfo()
- {
- return $this->success($this->service->getClientInfo($this->userid, $this->clientInfo));
- }
- }
|