añadido margen a tarifas impresion

This commit is contained in:
Jaime Jiménez
2024-02-24 14:05:01 +01:00
parent c6b7a1712b
commit a44ee4e4ed
9 changed files with 71 additions and 31 deletions

View File

@ -11,6 +11,7 @@ class MaquinasTarifasImpresionEntity extends \CodeIgniter\Entity\Entity
"tipo" => null,
"precio" => null,
"uso" => null,
"margen" => null,
"user_created_id" => 0,
"user_updated_id" => 0,
"is_deleted" => 0,
@ -20,6 +21,7 @@ class MaquinasTarifasImpresionEntity extends \CodeIgniter\Entity\Entity
protected $casts = [
"maquina_id" => "int",
"precio" => "float",
"margen" => "float",
"user_created_id" => "int",
"user_updated_id" => "int",
"is_deleted" => "int",