mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
terminadas plantillas cliente y plantillas cliente lineas
This commit is contained in:
@ -3,7 +3,7 @@ namespace App\Entities\Cliente;
|
||||
|
||||
use CodeIgniter\Entity;
|
||||
|
||||
class ClientePreciosEntity extends \CodeIgniter\Entity\Entity
|
||||
class ClientePlantillaPreciosLineaEntity extends \CodeIgniter\Entity\Entity
|
||||
{
|
||||
protected $attributes = [
|
||||
"id" => null,
|
||||
@ -18,6 +18,7 @@ class ClientePreciosEntity extends \CodeIgniter\Entity\Entity
|
||||
"deleted_at" => null,
|
||||
"created_at" => null,
|
||||
"updated_at" => null,
|
||||
"user_updated_id" => null
|
||||
];
|
||||
protected $casts = [
|
||||
"plantilla_id" => "int",
|
||||
@ -25,5 +26,6 @@ class ClientePreciosEntity extends \CodeIgniter\Entity\Entity
|
||||
"tiempo_max" => "float",
|
||||
"margen" => "float",
|
||||
"is_deleted" => "int",
|
||||
"user_updated_id" => "int"
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user