Deprecated : Constant E_STRICT is deprecated in /home/pastorz/old-espace-client/vendor/symfony/error-handler/ErrorHandler.php on line 58
Deprecated : Constant E_STRICT is deprecated in /home/pastorz/old-espace-client/vendor/symfony/error-handler/ErrorHandler.php on line 76
Symfony Profiler
<?php
namespace App\Entity ;
use App\Repository\GuardChargeConfigRepository ;
use Doctrine\DBAL\Types\Types ;
use Doctrine\ORM\Mapping as ORM ;
use Gedmo\Timestampable\Traits\TimestampableEntity ;
#[ORM\Entity ( repositoryClass : GuardChargeConfigRepository ::class)]
class GuardChargeConfig
{
use TimestampableEntity ;
#[ORM\Id ]
#[ORM\GeneratedValue ]
#[ORM\Column ]
private ?int $id = null ;
#[ORM\Column ( type : Types :: DECIMAL , precision : 10 , scale : 2 )]
private ?float $palletPrice = null ;
#[ORM\Column ( type : Types :: DECIMAL , precision : 10 , scale : 2 )]
private ?float $price = null ;
#[ORM\Column ( type : 'integer' )]
private ?int $freeDays = null ;
public function getId (): ? int
{
return $this -> id ;
}
public function getPalletPrice (): ? float
{
return $this -> palletPrice ;
}
public function setPalletPrice ( float $palletPrice ): self
{
$this -> palletPrice = $palletPrice ;
return $this ;
}
public function getPrice (): ? float
{
return $this -> price ;
}
public function setPrice ( float $price ): self
{
$this -> price = $price ;
return $this ;
}
public function getFreeDays (): ? int
{
return $this -> freeDays ;
}
public function setFreeDays (? int $freeDays ): GuardChargeConfig
{
$this -> freeDays = $freeDays ;
return $this ;
}
}