mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
22 lines
502 B
PHP
22 lines
502 B
PHP
<?php
|
|
namespace App\Entities\Configuracion;
|
|
|
|
use CodeIgniter\Entity;
|
|
|
|
class SeriesFacturasEntity extends \CodeIgniter\Entity\Entity
|
|
{
|
|
protected $attributes = [
|
|
'id' => null,
|
|
'nombre' => null,
|
|
'tipo' => 'facturacion', // default value
|
|
'formato' => null,
|
|
'next' => 1, // default value
|
|
'grupo' => 0, // default value
|
|
'created_at' => null, // default value
|
|
'updated_at' => null, // default value
|
|
];
|
|
protected $casts = [
|
|
|
|
];
|
|
}
|