Форматирование

This commit is contained in:
brusnitsyn
2026-04-24 16:46:10 +09:00
parent fd0e6ee817
commit 63daa62888
87 changed files with 1380 additions and 791 deletions

View File

@@ -7,7 +7,9 @@ use Illuminate\Database\Eloquent\Model;
class MisBed extends Model
{
protected $table = 'stt_Bed';
protected $primaryKey = 'BedID';
public $timestamps = false;
protected $fillable = [
@@ -24,14 +26,14 @@ class MisBed extends Model
'x_Edition',
'x_Status',
'ShiftNum',
'rf_PreviousBedID'
'rf_PreviousBedID',
];
protected $casts = [
'DateWorkB' => 'datetime',
'DateWorkE' => 'datetime',
'UGUID' => 'string',
'x_Status' => 'integer'
'x_Status' => 'integer',
];
public function bedActions()