mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
27 lines
603 B
PHP
27 lines
603 B
PHP
<?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",
|
|
];
|
|
}
|