mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
imposiciones
This commit is contained in:
26
ci4/app/Entities/Configuracion/ImposicionEsquemaEntity.php
Normal file
26
ci4/app/Entities/Configuracion/ImposicionEsquemaEntity.php
Normal file
@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
namespace App\Entities\Configuracion;
|
||||
|
||||
use CodeIgniter\Entity\Entity;
|
||||
|
||||
class ImposicionEsquemaEntity extends Entity
|
||||
{
|
||||
protected $attributes = [
|
||||
"name" => null,
|
||||
"rows" => null,
|
||||
"columns" => null,
|
||||
"orientacion"=> null,
|
||||
"rotativa"=> null,
|
||||
"cosido"=> null,
|
||||
"svg_schema"=> null
|
||||
];
|
||||
protected $dates = ['created_at', 'updated_at', 'deleted_at'];
|
||||
protected $casts = [
|
||||
"name" => "string",
|
||||
"rows" => "integer",
|
||||
"columns" => "integer",
|
||||
"rotativa"=> "boolean",
|
||||
"cosido"=> "boolean",
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user