<?php
namespace App\Entity;
use App\Entity\SuperClass\BaseEntity;
use App\Repository\LocationDataRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=LocationDataRepository::class)
*/
class LocationData extends BaseEntity
{
/**
* @ORM\Column(type="string", length=255)
*/
private $state_name;
/**
* @ORM\Column(type="string", length=255)
*/
private $state_id;
/**
* @ORM\Column(type="string", length=255)
*/
private $lat;
/**
* @ORM\Column(type="string", length=255)
*/
private $lng;
/**
* @ORM\Column(type="string", length=255)
*/
private $city;
/**
* @ORM\Column(type="string", length=255)
*/
private $county;
/**
* @ORM\Column(type="string")
*/
private $zip;
/**
* @ORM\Column(type="json")
*/
private $countyWeights;
/**
* @ORM\Column(type="string", length=255)
*/
private $county_names_all;
/**
* @ORM\Column(type="string")
*/
private $county_fips;
/**
* @ORM\Column(type="string")
*/
private $density;
/**
* @ORM\Column(type="string")
*/
private $population;
/**
* @ORM\Column(type="string", length=255)
*/
private $county_fips_all;
/**
* @ORM\Column(type="boolean")
*/
private $military;
/**
* @ORM\Column(type="string", length=255)
*/
private $timezone;
/**
* @ORM\Column(type="string", length=255)
*/
private $country;
public function getStateName(): ?string
{
return (string) $this->state_name;
}
public function setStateName(string $state_name): self
{
$this->state_name = $state_name;
return $this;
}
public function getStateId(): ?string
{
return (string) $this->state_id;
}
public function setStateId(string $state_id): self
{
$this->state_id = $state_id;
return $this;
}
public function getLat(): ?string
{
return (float) $this->lat;
}
public function setLat(string $lat): self
{
$this->lat = $lat;
return $this;
}
public function getLng(): ?string
{
return (float) $this->lng;
}
public function setLng(string $lng): self
{
$this->lng = $lng;
return $this;
}
public function getCity(): ?string
{
return (string) $this->city;
}
public function setCity(string $city): self
{
$this->city = $city;
return $this;
}
public function getCounty(): ?string
{
return (string) $this->county;
}
public function setCounty(string $county): self
{
$this->county = $county;
return $this;
}
public function getZip(): ?string
{
return (string) $this->zip;
}
public function setZip(int $zip): self
{
$this->zip = $zip;
return $this;
}
public function getCountyWeights()
{
return $this->countyWeights;
}
public function setCountyWeights($countyWeights): self
{
$this->countyWeights = $countyWeights;
return $this;
}
public function getCountyNamesAll(): ?string
{
return (string) $this->county_names_all;
}
public function setCountyNamesAll(string $county_names_all): self
{
$this->county_names_all = $county_names_all;
return $this;
}
public function getCountyFips(): ?int
{
return $this->county_fips;
}
public function setCountyFips(int $county_fips): self
{
$this->county_fips = $county_fips;
return $this;
}
public function getDensity(): ?float
{
return (float) $this->density;
}
public function setDensity(float $density): self
{
$this->density = $density;
return $this;
}
public function getPopulation(): ?string
{
return (float) $this->population;
}
public function setPopulation(string $population): self
{
$this->population = $population;
return $this;
}
public function getCountyFipsAll(): ?string
{
return $this->county_fips_all;
}
public function setCountyFipsAll(string $county_fips_all): self
{
$this->county_fips_all = $county_fips_all;
return $this;
}
public function getMilitary(): ?bool
{
return $this->military;
}
public function setMilitary($military): self
{
$this->military = $military;
return $this;
}
public function getTimezone(): ?string
{
return $this->timezone;
}
public function setTimezone(string $timezone): self
{
$this->timezone = $timezone;
return $this;
}
public function getCountry(): ?string
{
return $this->country;
}
public function setCountry(string $country): self
{
$this->country = $country;
return $this;
}
}