papel impresion terminado a falta de añadir maquinas y revisar UI

This commit is contained in:
Jaime Jimenez
2023-06-12 08:21:57 +02:00
parent 3932da5b84
commit 4ca43ad7ef
79 changed files with 25638 additions and 126 deletions

View File

@ -0,0 +1,28 @@
<?php
namespace App\Entities\Configuracion;
use CodeIgniter\Entity;
class PapelImpresionTipologia extends \CodeIgniter\Entity\Entity
{
protected $attributes = [
"id" => null,
"papel_impresion_id" => null,
"tipo" => null,
"negro" => 0.0,
"cyan" => 0.0,
"magenta" => 0.0,
"amarillo" => 0.0,
"gota_negro" => 0.0,
"gota_color" => 0.0,
];
protected $casts = [
"papel_impresion_id" => "int",
"negro" => "float",
"cyan" => "float",
"magenta" => "float",
"amarillo" => "float",
"gota_negro" => "float",
"gota_color" => "float",
];
}