Files
safekat/ci4/app/Entities/Tarifas/TarifaEnvioPrecioEntity.php
2023-08-29 00:16:37 +02:00

35 lines
889 B
PHP

<?php
namespace App\Entities\Tarifas;
use CodeIgniter\Entity;
class TarifaEnvioPrecioEntity extends \CodeIgniter\Entity\Entity
{
protected $attributes = [
"id" => null,
"tarifa_envio_id" => null,
"proveedor_id" => null,
"tipo_envio" => null,
"peso_min" => null,
"peso_max" => null,
"precio" => null,
"precio_adicional" => 0,
"user_created_id" => 0,
"user_updated_id" => 0,
"is_deleted" => 0,
"created_at" => null,
"updated_at" => null,
];
protected $casts = [
"tarifa_envio_id" => "int",
"proveedor_id" => "int",
"peso_min" => "float",
"peso_max" => "float",
"precio" => "float",
"precio_adicional" => "float",
"user_created_id" => "int",
"user_updated_id" => "int",
"is_deleted" => "int",
];
}