mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
añadidos ficheros nuevos
This commit is contained in:
@ -0,0 +1,22 @@
|
||||
<?php
|
||||
namespace App\Entities\Tarifas\Acabados;
|
||||
|
||||
use CodeIgniter\Entity;
|
||||
|
||||
class TarifasAcabadosServicioAcabadoEntity extends \CodeIgniter\Entity\Entity
|
||||
{
|
||||
protected $attributes = [
|
||||
"id" => null,
|
||||
"tarifa_id" => null,
|
||||
'servicio_id' => false,
|
||||
"user_updated_id" => 0,
|
||||
"created_at" => null,
|
||||
"updated_at" => null,
|
||||
"deleted_at" => null,
|
||||
];
|
||||
protected $casts = [
|
||||
"tarifa_id" => "int",
|
||||
"servicio_id" => "int",
|
||||
"user_updated_id" => "int",
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user