mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
29 lines
728 B
PHP
29 lines
728 B
PHP
<?php
|
|
|
|
namespace App\Entities\Configuracion;
|
|
|
|
use CodeIgniter\Entity\Entity;
|
|
|
|
class SelectorCalidadImpresion extends Entity
|
|
{
|
|
protected $attributes = [
|
|
'alias' => null,
|
|
'cliente_id' => null,
|
|
'isPod' => 0,
|
|
'input_isColor' => 0,
|
|
'input_isHq' => 0,
|
|
'output_isColor' => 0,
|
|
'output_isHq' => 0,
|
|
];
|
|
|
|
protected $datamap = [];
|
|
protected $dates = ['created_at', 'updated_at', 'deleted_at'];
|
|
protected $casts = [
|
|
'isPod' => 'boolean',
|
|
'input_isColor' => 'boolean',
|
|
'input_isHq' => 'boolean',
|
|
'output_isColor' => 'boolean',
|
|
'output_isHq' => 'boolean',
|
|
];
|
|
}
|