src/Entity/AllTyre.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\AllTyreRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=AllTyreRepository::class)
  7.  */
  8. class AllTyre
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255)
  18.      */
  19.     private $name;
  20.     /**
  21.      * @ORM\Column(type="integer")
  22.      */
  23.     private $price;
  24.     /**
  25.      * @ORM\Column(type="string", length=255)
  26.      */
  27.     private $fstring;
  28.     /**
  29.      * @ORM\Column(type="string", length=6)
  30.      */
  31.     private $width;
  32.     /**
  33.      * @ORM\Column(type="string", length=6)
  34.      */
  35.     private $heigth;
  36.     /**
  37.      * @ORM\Column(type="string", length=6)
  38.      */
  39.     private $radius;
  40.     /**
  41.      * @ORM\Column(type="string", length=24)
  42.      */
  43.     private $iparam;
  44.     /**
  45.      * @ORM\Column(type="string", length=120)
  46.      */
  47.     private $brand;
  48.     /**
  49.      * @ORM\Column(type="string", length=120)
  50.      */
  51.     private $model;
  52.     /**
  53.      * @ORM\Column(type="string", length=255, nullable=true)
  54.      */
  55.     private $path;
  56.     /**
  57.      * @ORM\Column(type="string", length=22)
  58.      */
  59.     private $status;
  60.     /**
  61.      * @ORM\Column(type="string", length=22)
  62.      */
  63.     private $status_lot;
  64.     /**
  65.      * @ORM\Column(type="integer")
  66.      */
  67.     private $id_lot;
  68.     /**
  69.      * @ORM\Column(type="string", length=255, nullable=true)
  70.      */
  71.     private $location;
  72.     /**
  73.      * @ORM\Column(type="string", length=255)
  74.      */
  75.     private $link;
  76.     public function getId(): ?int
  77.     {
  78.         return $this->id;
  79.     }
  80.     public function getName(): ?string
  81.     {
  82.         return $this->name;
  83.     }
  84.     public function setName(string $name): self
  85.     {
  86.         $this->name $name;
  87.         return $this;
  88.     }
  89.     public function getPrice(): ?int
  90.     {
  91.         return $this->price;
  92.     }
  93.     public function setPrice(int $price): self
  94.     {
  95.         $this->price $price;
  96.         return $this;
  97.     }
  98.     public function getFstring(): ?string
  99.     {
  100.         return $this->fstring;
  101.     }
  102.     public function setFstring(string $fstring): self
  103.     {
  104.         $this->fstring $fstring;
  105.         return $this;
  106.     }
  107.     public function getWidth(): ?string
  108.     {
  109.         return $this->width;
  110.     }
  111.     public function setWidth(string $width): self
  112.     {
  113.         $this->width $width;
  114.         return $this;
  115.     }
  116.     public function getHeigth(): ?string
  117.     {
  118.         return $this->heigth;
  119.     }
  120.     public function setHeigth(string $heigth): self
  121.     {
  122.         $this->heigth $heigth;
  123.         return $this;
  124.     }
  125.     public function getRadius(): ?string
  126.     {
  127.         return $this->radius;
  128.     }
  129.     public function setRadius(string $radius): self
  130.     {
  131.         $this->radius $radius;
  132.         return $this;
  133.     }
  134.     public function getIparam(): ?string
  135.     {
  136.         return $this->iparam;
  137.     }
  138.     public function setIparam(string $iparam): self
  139.     {
  140.         $this->iparam $iparam;
  141.         return $this;
  142.     }
  143.     public function getBrand(): ?string
  144.     {
  145.         return $this->brand;
  146.     }
  147.     public function setBrand(string $brand): self
  148.     {
  149.         $this->brand $brand;
  150.         return $this;
  151.     }
  152.     public function getModel(): ?string
  153.     {
  154.         return $this->model;
  155.     }
  156.     public function setModel(string $model): self
  157.     {
  158.         $this->model $model;
  159.         return $this;
  160.     }
  161.     public function getPath(): ?string
  162.     {
  163.         return $this->path;
  164.     }
  165.     public function setPath(?string $path): self
  166.     {
  167.         $this->path $path;
  168.         return $this;
  169.     }
  170.     public function getStatus(): ?string
  171.     {
  172.         return $this->status;
  173.     }
  174.     public function setStatus(string $status): self
  175.     {
  176.         $this->status $status;
  177.         return $this;
  178.     }
  179.     public function getStatusLot(): ?string
  180.     {
  181.         return $this->status_lot;
  182.     }
  183.     public function setStatusLot(string $status_lot): self
  184.     {
  185.         $this->status_lot $status_lot;
  186.         return $this;
  187.     }
  188.     public function getIdLot(): ?int
  189.     {
  190.         return $this->id_lot;
  191.     }
  192.     public function setIdLot(int $id_lot): self
  193.     {
  194.         $this->id_lot $id_lot;
  195.         return $this;
  196.     }
  197.     public function getLocation(): ?string
  198.     {
  199.         return $this->location;
  200.     }
  201.     public function setLocation(?string $location): self
  202.     {
  203.         $this->location $location;
  204.         return $this;
  205.     }
  206.     public function getLink(): ?string
  207.     {
  208.         return $this->link;
  209.     }
  210.     public function setLink(string $link): self
  211.     {
  212.         $this->link $link;
  213.         return $this;
  214.     }
  215. }