mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
30 lines
705 B
PHP
Executable File
30 lines
705 B
PHP
Executable File
<?php
|
|
namespace App\Entities\Cliente;
|
|
|
|
use CodeIgniter\Entity;
|
|
|
|
class ClientePreciosEntity extends \CodeIgniter\Entity\Entity
|
|
{
|
|
protected $attributes = [
|
|
"id" => null,
|
|
"plantilla_id" => null,
|
|
"tipo" => null,
|
|
"tipo_maquina" => null,
|
|
"tipo_impresion" => null,
|
|
"tiempo_min" => null,
|
|
"tiempo_max" => null,
|
|
"margen" => null,
|
|
"is_deleted" => 0,
|
|
"deleted_at" => null,
|
|
"created_at" => null,
|
|
"updated_at" => null,
|
|
];
|
|
protected $casts = [
|
|
"plantilla_id" => "int",
|
|
"tiempo_min" => "float",
|
|
"tiempo_max" => "float",
|
|
"margen" => "float",
|
|
"is_deleted" => "int",
|
|
];
|
|
}
|