32 lines
986 B
PHP
32 lines
986 B
PHP
<?php
|
|
|
|
namespace App\Domain\ReportDuty\DTO;
|
|
|
|
class SnapshotStatistics
|
|
{
|
|
public function __construct(
|
|
public int $savedPatients = 0,
|
|
public int $savedMigrations = 0,
|
|
public int $savedReanimations = 0,
|
|
public array $byStatus = [],
|
|
public array $byUrgency = [],
|
|
public array $admitted = ['today' => 0, 'planned' => 0, 'urgent' => 0],
|
|
public int $inReanimation = 0,
|
|
public int $admittedToday = 0,
|
|
public int $inDepartment = 0,
|
|
public int $planned = 0,
|
|
public int $deceased = 0,
|
|
public int $transferred = 0,
|
|
public int $discharged = 0,
|
|
public int $outcome = 0,
|
|
public float $totalBedDays = 0,
|
|
public float $totalPreopBedDays = 0,
|
|
public int $patientsWithOperations = 0,
|
|
public int $totalOperations = 0,
|
|
public int $plannedOperations = 0,
|
|
public int $urgentOperations = 0,
|
|
public int $totalPatients = 0,
|
|
) {
|
|
}
|
|
}
|