add comment field

This commit is contained in:
amazuecos
2024-10-21 17:05:50 +00:00
parent 73a60466d3
commit c6b1bd9292
5 changed files with 11 additions and 0 deletions

View File

@ -9,6 +9,7 @@ class TarifaextraEntity extends \CodeIgniter\Entity\Entity
"id" => null,
"nombre" => null,
"code" => null,
"comment" => null,
"precio" => null,
"margen" => 0,
"mostrar_en_presupuesto" => 1,
@ -22,6 +23,7 @@ class TarifaextraEntity extends \CodeIgniter\Entity\Entity
protected $casts = [
"precio" => "float",
"code" => "string",
"comment" => "string",
"margen" => "float",
"mostrar_en_presupuesto" => "int",
"user_created_id" => "int",