src/Entity/StoreFinderData.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * @ORM\Entity(repositoryClass="App\Repository\StoreFinderDataRepository")
  6.  */
  7. class StoreFinderData
  8. {
  9.     const FINDER_MAIN='finder_main';
  10.     /**
  11.      * @ORM\Id()
  12.      * @ORM\GeneratedValue()
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="integer")
  18.      */
  19.     private $distanceSearchArea;
  20.     /**
  21.      * @ORM\Column(type="integer")
  22.      */
  23.     private $storeQuantityShow;
  24.     /**
  25.      * @ORM\Column(type="integer")
  26.      */
  27.     private $weightLeadCost;
  28.     /**
  29.      * @ORM\Column(type="integer")
  30.      */
  31.     private $weightCapping;
  32.     /**
  33.      * @ORM\Column(type="integer")
  34.      */
  35.     private $weightStoreDistance;
  36.     /**
  37.      * @ORM\Column(type="string", length=255)
  38.      */
  39.     private $typeAlgo;
  40.     public function getId(): ?int
  41.     {
  42.         return $this->id;
  43.     }
  44.     public function getDistanceSearchArea(): ?int
  45.     {
  46.         return $this->distanceSearchArea;
  47.     }
  48.     public function setDistanceSearchArea(int $distanceSearchArea): self
  49.     {
  50.         $this->distanceSearchArea $distanceSearchArea;
  51.         return $this;
  52.     }
  53.     public function getStoreQuantityShow(): ?int
  54.     {
  55.         return $this->storeQuantityShow;
  56.     }
  57.     public function setStoreQuantityShow(int $storeQuantityShow): self
  58.     {
  59.         $this->storeQuantityShow $storeQuantityShow;
  60.         return $this;
  61.     }
  62.     public function getWeightLeadCost(): ?int
  63.     {
  64.         return $this->weightLeadCost;
  65.     }
  66.     public function setWeightLeadCost(int $weightLeadCost): self
  67.     {
  68.         $this->weightLeadCost $weightLeadCost;
  69.         return $this;
  70.     }
  71.     public function getWeightCapping(): ?int
  72.     {
  73.         return $this->weightCapping;
  74.     }
  75.     public function setWeightCapping(int $weightCapping): self
  76.     {
  77.         $this->weightCapping $weightCapping;
  78.         return $this;
  79.     }
  80.     public function getWeightStoreDistance(): ?int
  81.     {
  82.         return $this->weightStoreDistance;
  83.     }
  84.     public function setWeightStoreDistance(int $weightStoreDistance): self
  85.     {
  86.         $this->weightStoreDistance $weightStoreDistance;
  87.         return $this;
  88.     }
  89.     public function getTypeAlgo(): ?string
  90.     {
  91.         return $this->typeAlgo;
  92.     }
  93.     public function setTypeAlgo(string $typeAlgo): self
  94.     {
  95.         $this->typeAlgo $typeAlgo;
  96.         return $this;
  97.     }
  98. }