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