mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
añadido calculo de formas rot y merma automatica para rot
This commit is contained in:
20
ci4/app/Entities/Configuracion/TipoPresupuestoEntity.php
Executable file
20
ci4/app/Entities/Configuracion/TipoPresupuestoEntity.php
Executable file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
namespace App\Entities\Configuracion;
|
||||
|
||||
use CodeIgniter\Entity;
|
||||
|
||||
class TipoPresupuestoEntity extends \CodeIgniter\Entity\Entity
|
||||
{
|
||||
protected $attributes = [
|
||||
"id" => null,
|
||||
"codigo" => null,
|
||||
"is_cosido" => null,
|
||||
"is_deleted" => 0,
|
||||
"deleted_at" => null,
|
||||
"created_at" => null,
|
||||
"updated_at" => null,
|
||||
];
|
||||
protected $casts = [
|
||||
"is_deleted" => "int",
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user