24 lines
787 B
PHP
24 lines
787 B
PHP
<?php
|
|
|
|
namespace App\Domain\ReportDuty\DTO;
|
|
|
|
class ReanimationSnapshotData
|
|
{
|
|
public function __construct(
|
|
public readonly int $id,
|
|
public readonly int $migrationPatientId, // будет заполнено после сохранения миграции
|
|
public readonly int $medicalHistoryId,
|
|
public readonly ?string $inDate,
|
|
public readonly ?string $outDate,
|
|
public readonly ?string $description,
|
|
public readonly ?int $stationarBranchId,
|
|
public readonly ?int $migrationStationarBranchId,
|
|
public readonly ?int $migrationDepartmentId,
|
|
public readonly ?int $doctorId,
|
|
public readonly ?int $userId,
|
|
public readonly ?int $misUserId,
|
|
public readonly ?string $comment,
|
|
) {
|
|
}
|
|
}
|