mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
tarifa maquinas
This commit is contained in:
@ -0,0 +1,32 @@
|
||||
<?php
|
||||
namespace App\Entities\Tarifas\Maquinas;
|
||||
|
||||
use App\Entities\Tarifas\Acabados\TarifaAcabadoEntity;
|
||||
use App\Entities\Tarifas\TarifaextraEntity;
|
||||
use App\Models\Tarifas\Acabados\TarifaAcabadoModel;
|
||||
use App\Models\Tarifas\TarifaextraModel;
|
||||
use CodeIgniter\Entity\Entity;
|
||||
|
||||
|
||||
class TarifaExtraMaquinaEntity extends Entity
|
||||
{
|
||||
protected $attributes = [
|
||||
"id" => null,
|
||||
"tarifa_extra_id" => null,
|
||||
"maquina_id" => null,
|
||||
"maquina_tarea_id" => null,
|
||||
];
|
||||
protected $casts = [
|
||||
"id" => "integer",
|
||||
"tarifa_extra_id" => "integer",
|
||||
"maquina_id" => "integer",
|
||||
"maquina_tarea_id" => "?integer",
|
||||
|
||||
];
|
||||
|
||||
public function tarifa_extra(): TarifaextraEntity
|
||||
{
|
||||
$m = model(TarifaextraModel::class);
|
||||
return $m->find($this->attributes["tarifa_extra_id"]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user