imposiciones

This commit is contained in:
amazuecos
2025-04-20 19:26:07 +02:00
parent 52a4e7d37b
commit c3d38e29a4
34 changed files with 1676 additions and 496 deletions

View 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",
];
}