src/Entity/ConfigSite.php line 9
<?php
namespace App\Entity;
use App\Repository\ConfigSiteRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: ConfigSiteRepository::class)]
class ConfigSite
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(name: 'francoDelivery', type: 'integer', nullable: true)]
private ?int $francoDelivery;
#[ORM\Column(name: 'costDelivery', type: 'integer', nullable: true)]
private ?int $costDelivery;
#[ORM\Column(name: 'numberJoker', type: 'integer', nullable: true)]
private ?int $numberJoker;
#[ORM\Column(name: 'actionShock', type: 'integer', nullable: true)]
private ?int $actionShock;
#[ORM\Column(name: 'pourcentSpecialCustomer', type: 'integer', nullable: true)]
private ?int $pourcentSpecialCustomer;
public function getCostDelivery(): ?int
{
return $this->costDelivery;
}
public function setCostDelivery(?int $costDelivery): void
{
$this->costDelivery = $costDelivery;
}
/**
* @return int|null
*/
public function getPourcentSpecialCustomer(): ?int
{
return $this->pourcentSpecialCustomer;
}
/**
* @param int|null $pourcentSpecialCustomer
*/
public function setPourcentSpecialCustomer(?int $pourcentSpecialCustomer): void
{
$this->pourcentSpecialCustomer = $pourcentSpecialCustomer;
}
/**
* @return int|null
*/
public function getActionShock(): ?int
{
return $this->actionShock;
}
/**
* @param int|null $actionShock
*/
public function setActionShock(?int $actionShock): void
{
$this->actionShock = $actionShock;
}
public function getId(): ?int
{
return $this->id;
}
/**
* @return int|null
*/
public function getNumberJoker(): ?int
{
return $this->numberJoker;
}
/**
* @param int|null $numberJoker
*/
public function setNumberJoker(?int $numberJoker): void
{
$this->numberJoker = $numberJoker;
}
/**
* @return int|null
*/
public function getFrancoDelivery(): ?int
{
return $this->francoDelivery;
}
/**
* @param int|null $francoDelivery
*/
public function setFrancoDelivery(?int $francoDelivery): void
{
$this->francoDelivery = $francoDelivery;
}
}