Files
onboard/app/Models/ReanimationPatientIndicator.php
brusnitsyn fd0e6ee817 Добавлено формирование отчета
И индикатор реанимации
2026-04-24 16:44:58 +09:00

20 lines
369 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ReanimationPatientIndicator extends Model
{
protected $primaryKey = 'reanimation_patient_indicator_id';
protected $fillable = [
'rf_department_id',
'rf_report_id',
'rf_medicalhistory_id',
'indicator',
'comment',
'created_by',
];
}