Files
safekat/ci4/app/Entities/Tarifas/Acabados/ServicioAcabadoEntity.php

23 lines
562 B
PHP

<?php
namespace App\Entities\Tarifas\Acabados;
use CodeIgniter\Entity;
class ServicioAcabadoEntity extends \CodeIgniter\Entity\Entity
{
protected $attributes = [
"id" => null,
"nombre" => null,
'mostrar_en_cliente' => false,
"comentarios" => null,
"user_updated_id" => 0,
"created_at" => null,
"updated_at" => null,
"deleted_at" => null,
];
protected $casts = [
"mostrar_en_cliente" => "boolean",
"comentarios" => "string",
"user_updated_id" => "int",
];
}