mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
27 lines
637 B
PHP
Executable File
27 lines
637 B
PHP
Executable File
<?php
|
|
namespace App\Entities\Configuracion;
|
|
|
|
use CodeIgniter\Entity;
|
|
|
|
class PapelGenerico extends \CodeIgniter\Entity\Entity
|
|
{
|
|
protected $attributes = [
|
|
"id" => null,
|
|
"nombre" => null,
|
|
"code" => null,
|
|
"code_ot" => null,
|
|
"show_in_client" => false,
|
|
"show_in_client_special" => false,
|
|
"is_deleted" => 0,
|
|
"activo" => false,
|
|
"created_at" => null,
|
|
"updated_at" => null,
|
|
];
|
|
protected $casts = [
|
|
"show_in_client" => "boolean",
|
|
"activo" => "boolean",
|
|
"show_in_client_special" => "boolean",
|
|
"is_deleted" => "int",
|
|
];
|
|
}
|