mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
papel impresion terminado a falta de añadir maquinas y revisar UI
This commit is contained in:
28
ci4/app/Entities/Configuracion/PapelImpresionTipologia.php
Normal file
28
ci4/app/Entities/Configuracion/PapelImpresionTipologia.php
Normal 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",
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user