src/Entity/Rebate.php line 10
<?phpnamespace App\Entity;use App\Repository\RebateRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: RebateRepository::class)]class Rebate{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(name: 'min', type: 'integer')]private ?int $min;#[ORM\Column(name: 'max', type: 'integer')]private ?int $max;#[ORM\Column(name: 'pourcentRebate', type: 'integer')]private ?int $pourcentRebate;#[ORM\Column(name: 'status', type: 'boolean')]private ?bool $status;#[ORM\Column(name: 'excluded_products', type: Types::SIMPLE_ARRAY, nullable: true)]private ?array $excluded_products = null;#[ORM\Column(name: 'specific_products', type: Types::SIMPLE_ARRAY, nullable: true)]private ?array $specific_products = null;/*** @return bool|null*/public function getStatus(): ?bool{return $this->status;}/*** @param bool|null $status*/public function setStatus(?bool $status): void{$this->status = $status;}/*** @return int|null*/public function getMin(): ?int{return $this->min;}/*** @param int|null $min*/public function setMin(?int $min): void{$this->min = $min;}/*** @return int|null*/public function getMax(): ?int{return $this->max;}/*** @param int|null $max*/public function setMax(?int $max): void{$this->max = $max;}/*** @return int|null*/public function getPourcentRebate(): ?int{return $this->pourcentRebate;}/*** @param int|null $pourcentRebate*/public function setPourcentRebate(?int $pourcentRebate): void{$this->pourcentRebate = $pourcentRebate;}public function getId(): ?int{return $this->id;}public function getExcludedProducts(): ?array{return $this->excluded_products;}public function setExcludedProducts(?array $excluded_products): static{$this->excluded_products = $excluded_products;return $this;}public function getSpecificProducts(): ?array{return $this->specific_products;}public function setSpecificProducts(?array $specific_products): static{$this->specific_products = $specific_products;return $this;}}