<?phpnamespace App\Entity;use Doctrine\ORM\Mapping as ORM;/** * @ORM\Entity(repositoryClass="App\Repository\StoreFinderDataRepository") */class StoreFinderData{ const FINDER_MAIN='finder_main'; /** * @ORM\Id() * @ORM\GeneratedValue() * @ORM\Column(type="integer") */ private $id; /** * @ORM\Column(type="integer") */ private $distanceSearchArea; /** * @ORM\Column(type="integer") */ private $storeQuantityShow; /** * @ORM\Column(type="integer") */ private $weightLeadCost; /** * @ORM\Column(type="integer") */ private $weightCapping; /** * @ORM\Column(type="integer") */ private $weightStoreDistance; /** * @ORM\Column(type="string", length=255) */ private $typeAlgo; public function getId(): ?int { return $this->id; } public function getDistanceSearchArea(): ?int { return $this->distanceSearchArea; } public function setDistanceSearchArea(int $distanceSearchArea): self { $this->distanceSearchArea = $distanceSearchArea; return $this; } public function getStoreQuantityShow(): ?int { return $this->storeQuantityShow; } public function setStoreQuantityShow(int $storeQuantityShow): self { $this->storeQuantityShow = $storeQuantityShow; return $this; } public function getWeightLeadCost(): ?int { return $this->weightLeadCost; } public function setWeightLeadCost(int $weightLeadCost): self { $this->weightLeadCost = $weightLeadCost; return $this; } public function getWeightCapping(): ?int { return $this->weightCapping; } public function setWeightCapping(int $weightCapping): self { $this->weightCapping = $weightCapping; return $this; } public function getWeightStoreDistance(): ?int { return $this->weightStoreDistance; } public function setWeightStoreDistance(int $weightStoreDistance): self { $this->weightStoreDistance = $weightStoreDistance; return $this; } public function getTypeAlgo(): ?string { return $this->typeAlgo; } public function setTypeAlgo(string $typeAlgo): self { $this->typeAlgo = $typeAlgo; return $this; }}