mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
34 lines
863 B
PHP
Executable File
34 lines
863 B
PHP
Executable File
<?php
|
|
namespace App\Entities\Tarifas;
|
|
|
|
use CodeIgniter\Entity;
|
|
|
|
class TarifaEncuadernacionLineaHoras extends \CodeIgniter\Entity\Entity
|
|
{
|
|
protected $attributes = [
|
|
"id" => null,
|
|
"tirada_encuadernacion_id" => 0,
|
|
"tiempo_min" => 0,
|
|
"tiempo_max" => 0,
|
|
"precio_hora" => 0,
|
|
"total_min" => 0,
|
|
"margen" => 0,
|
|
"user_created_id" => 0,
|
|
"user_updated_id" => 0,
|
|
"is_deleted" => 0,
|
|
"created_at" => null,
|
|
"updated_at" => null,
|
|
];
|
|
protected $casts = [
|
|
"tirada_encuadernacion_id" => "int",
|
|
"tiempo_min" => "float",
|
|
"tiempo_max" => "float",
|
|
"total_min" => "float",
|
|
"precio_hora" => "float",
|
|
"margen" => "float",
|
|
"user_created_id" => "int",
|
|
"user_updated_id" => "int",
|
|
"is_deleted" => "int",
|
|
];
|
|
}
|