22 lines
539 B
PHP
22 lines
539 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace app\adminapi\controller\stats;
|
|
|
|
use app\adminapi\controller\BaseAdminController;
|
|
use app\adminapi\logic\stats\AssistantPerformanceLogic;
|
|
|
|
/**
|
|
* 医助个人业绩
|
|
*
|
|
* - GET stats.assistantPerformance/overview 个人业绩概览
|
|
*/
|
|
class AssistantPerformanceController extends BaseAdminController
|
|
{
|
|
public function overview()
|
|
{
|
|
$params = $this->request->get();
|
|
return $this->data(AssistantPerformanceLogic::overview($params, $this->adminId, $this->adminInfo));
|
|
}
|
|
}
|