You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
525 B
29 lines
525 B
2 months ago
|
<?php
|
||
|
declare(strict_types = 1);
|
||
|
|
||
|
namespace App\Http\Logics\Health;
|
||
|
|
||
|
use App\Services\HisHttp\Client;
|
||
|
use App\Utils\Traits\Logger;
|
||
|
use App\Utils\Traits\MiniProgramAuth;
|
||
|
use Illuminate\Auth\AuthenticationException;
|
||
|
class RecordLogic
|
||
|
{
|
||
|
use Logger;
|
||
|
use MiniProgramAuth;
|
||
|
|
||
|
private Client $his_client;
|
||
|
|
||
|
/**
|
||
|
* ItemLogic Construct
|
||
|
* @throws AuthenticationException
|
||
|
*/
|
||
|
public function __construct()
|
||
|
{
|
||
|
$this->authInitialize();
|
||
|
$this->his_client = app('HisHttpService');
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|