mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
20 lines
405 B
PHP
Executable File
20 lines
405 B
PHP
Executable File
<?php
|
|
namespace App\Entities\Clientes;
|
|
|
|
use CodeIgniter\Entity;
|
|
|
|
class ClientePlantillaPreciosEntity extends \CodeIgniter\Entity\Entity
|
|
{
|
|
protected $attributes = [
|
|
"id" => null,
|
|
"nombre" => null,
|
|
"is_deleted" => 0,
|
|
"deleted_at" => null,
|
|
"created_at" => null,
|
|
"updated_at" => null,
|
|
];
|
|
protected $casts = [
|
|
"is_deleted" => "int",
|
|
];
|
|
}
|