mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
# Conflicts: # ci4/app/Entities/Tarifas/TarifapreimpresionEntity.php # ci4/app/Language/es/Tarifaacabado.php # ci4/app/Language/es/Tarifamanipulado.php # ci4/app/Language/es/Tarifapreimpresion.php # ci4/app/Views/themes/backend/vuexy/form/tarifas/preimpresion/_tarifapreimpresionFormItems.php
28 lines
654 B
PHP
28 lines
654 B
PHP
<?php
|
|
namespace App\Entities\tarifas;
|
|
|
|
use CodeIgniter\Entity;
|
|
|
|
class TarifaacabadoEntity extends \CodeIgniter\Entity\Entity
|
|
{
|
|
protected $attributes = [
|
|
"id" => null,
|
|
"nombre" => null,
|
|
"precio_min" => 0,
|
|
"importe_fijo" => 0,
|
|
"user_created_id" => 0,
|
|
"user_updated_id" => 0,
|
|
"is_deleted" => 0,
|
|
"deleted_at" => null,
|
|
"created_at" => null,
|
|
"updated_at" => null,
|
|
];
|
|
protected $casts = [
|
|
"precio_min" => "float",
|
|
"importe_fijo" => "float",
|
|
"user_created_id" => "int",
|
|
"user_updated_id" => "int",
|
|
"is_deleted" => "int",
|
|
];
|
|
}
|