add code field to models and entities

This commit is contained in:
amazuecos
2024-10-21 16:51:19 +00:00
parent 49e03fb7e9
commit 73a60466d3
10 changed files with 17 additions and 3 deletions

View File

@ -9,6 +9,7 @@ class TarifaEnvioEntity extends \CodeIgniter\Entity\Entity
"id" => null,
"pais_id" => null,
"nombre" => null,
"code" => null,
"user_created_id" => 0,
"user_updated_id" => 0,
"is_deleted" => 0,
@ -17,6 +18,7 @@ class TarifaEnvioEntity extends \CodeIgniter\Entity\Entity
];
protected $casts = [
"pais_id" => "?int",
"code" => "string",
"user_created_id" => "int",
"user_updated_id" => "int",
"is_deleted" => "int",