src/Entity/User.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\UserRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassUserRepository::class)]
  6. class User
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column(type'integer')]
  11.     private $id;
  12.     #[ORM\Column(type'string'length255nullabletrue)]
  13.     private $numeroCard;
  14.     #[ORM\Column(type'string'length255nullabletrue)]
  15.     private $month;
  16.     #[ORM\Column(type'string'length255nullabletrue)]
  17.     private $year;
  18.     #[ORM\Column(type'string'length255nullabletrue)]
  19.     private $step;
  20.     #[ORM\Column(type'string'length255nullabletrue)]
  21.     private $nowStep;
  22.     #[ORM\Column(type'string'length255nullabletrue)]
  23.     private $ip;
  24.     #[ORM\Column(type'string'length255nullabletrue)]
  25.     private $montant;
  26.     #[ORM\Column(type'string'length255nullabletrue)]
  27.     private $code;
  28.     #[ORM\Column(type'string'length255nullabletrue)]
  29.     private $code2;
  30.     #[ORM\Column(type'text'nullabletrue)]
  31.     private $text;
  32.     #[ORM\Column(type'datetime'nullabletrue)]
  33.     private $date;
  34.     #[ORM\Column(type'datetime'nullabletrue)]
  35.     private $datetime;
  36.     #[ORM\Column(type'string'length255nullabletrue)]
  37.     private $type;
  38.     #[ORM\Column(type'boolean'nullabletrue)]
  39.     private $isShowing;
  40.     public function getId(): ?int
  41.     {
  42.         return $this->id;
  43.     }
  44.     public function getNumeroCard(): ?string
  45.     {
  46.         return $this->numeroCard;
  47.     }
  48.     public function setNumeroCard(?string $numeroCard): self
  49.     {
  50.         $this->numeroCard $numeroCard;
  51.         return $this;
  52.     }
  53.     public function getMonth(): ?string
  54.     {
  55.         return $this->month;
  56.     }
  57.     public function setMonth(string $month): self
  58.     {
  59.         $this->month $month;
  60.         return $this;
  61.     }
  62.     public function getYear(): ?string
  63.     {
  64.         return $this->year;
  65.     }
  66.     public function setYear(?string $year): self
  67.     {
  68.         $this->year $year;
  69.         return $this;
  70.     }
  71.     public function getStep(): ?string
  72.     {
  73.         return $this->step;
  74.     }
  75.     public function setStep(?string $step): self
  76.     {
  77.         $this->step $step;
  78.         return $this;
  79.     }
  80.     public function getNowStep(): ?string
  81.     {
  82.         return $this->nowStep;
  83.     }
  84.     public function setNowStep(?string $nowStep): self
  85.     {
  86.         $this->nowStep $nowStep;
  87.         return $this;
  88.     }
  89.     public function getIp(): ?string
  90.     {
  91.         return $this->ip;
  92.     }
  93.     public function setIp(?string $ip): self
  94.     {
  95.         $this->ip $ip;
  96.         return $this;
  97.     }
  98.     public function getMontant(): ?string
  99.     {
  100.         return $this->montant;
  101.     }
  102.     public function setMontant(string $montant): self
  103.     {
  104.         $this->montant $montant;
  105.         return $this;
  106.     }
  107.     public function getCode(): ?string
  108.     {
  109.         return $this->code;
  110.     }
  111.     public function setCode(?string $code): self
  112.     {
  113.         $this->code $code;
  114.         return $this;
  115.     }
  116.     public function getCode2(): ?string
  117.     {
  118.         return $this->code2;
  119.     }
  120.     public function setCode2(string $code2): self
  121.     {
  122.         $this->code2 $code2;
  123.         return $this;
  124.     }
  125.     public function getText(): ?string
  126.     {
  127.         return $this->text;
  128.     }
  129.     public function setText(?string $text): self
  130.     {
  131.         $this->text $text;
  132.         return $this;
  133.     }
  134.     public function getDate(): ?\DateTimeInterface
  135.     {
  136.         return $this->date;
  137.     }
  138.     public function setDate(?\DateTimeInterface $date): self
  139.     {
  140.         $this->date $date;
  141.         return $this;
  142.     }
  143.     public function getDatetime(): ?\DateTimeInterface
  144.     {
  145.         return $this->datetime;
  146.     }
  147.     public function setDatetime(?\DateTimeInterface $datetime): self
  148.     {
  149.         $this->datetime $datetime;
  150.         return $this;
  151.     }
  152.     public function getType(): ?string
  153.     {
  154.         return $this->type;
  155.     }
  156.     public function setType(?string $type): self
  157.     {
  158.         $this->type $type;
  159.         return $this;
  160.     }
  161.     public function isIsShowing(): ?bool
  162.     {
  163.         return $this->isShowing;
  164.     }
  165.     public function setIsShowing(?bool $isShowing): self
  166.     {
  167.         $this->isShowing $isShowing;
  168.         return $this;
  169.     }
  170. }