terminadas plantillas cliente y plantillas cliente lineas

This commit is contained in:
2024-01-02 10:14:45 +01:00
parent 3c9a08a726
commit 17885c29f9
17 changed files with 1123 additions and 451 deletions

View File

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