src/Entity/LocationData.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Entity\SuperClass\BaseEntity;
  4. use App\Repository\LocationDataRepository;
  5. use Doctrine\ORM\Mapping as ORM;
  6. /**
  7. * @ORM\Entity(repositoryClass=LocationDataRepository::class)
  8. */
  9. class LocationData extends BaseEntity
  10. {
  11. /**
  12. * @ORM\Column(type="string", length=255)
  13. */
  14. private $state_name;
  15. /**
  16. * @ORM\Column(type="string", length=255)
  17. */
  18. private $state_id;
  19. /**
  20. * @ORM\Column(type="string", length=255)
  21. */
  22. private $lat;
  23. /**
  24. * @ORM\Column(type="string", length=255)
  25. */
  26. private $lng;
  27. /**
  28. * @ORM\Column(type="string", length=255)
  29. */
  30. private $city;
  31. /**
  32. * @ORM\Column(type="string", length=255)
  33. */
  34. private $county;
  35. /**
  36. * @ORM\Column(type="string")
  37. */
  38. private $zip;
  39. /**
  40. * @ORM\Column(type="json")
  41. */
  42. private $countyWeights;
  43. /**
  44. * @ORM\Column(type="string", length=255)
  45. */
  46. private $county_names_all;
  47. /**
  48. * @ORM\Column(type="string")
  49. */
  50. private $county_fips;
  51. /**
  52. * @ORM\Column(type="string")
  53. */
  54. private $density;
  55. /**
  56. * @ORM\Column(type="string")
  57. */
  58. private $population;
  59. /**
  60. * @ORM\Column(type="string", length=255)
  61. */
  62. private $county_fips_all;
  63. /**
  64. * @ORM\Column(type="boolean")
  65. */
  66. private $military;
  67. /**
  68. * @ORM\Column(type="string", length=255)
  69. */
  70. private $timezone;
  71. /**
  72. * @ORM\Column(type="string", length=255)
  73. */
  74. private $country;
  75. public function getStateName(): ?string
  76. {
  77. return (string) $this->state_name;
  78. }
  79. public function setStateName(string $state_name): self
  80. {
  81. $this->state_name = $state_name;
  82. return $this;
  83. }
  84. public function getStateId(): ?string
  85. {
  86. return (string) $this->state_id;
  87. }
  88. public function setStateId(string $state_id): self
  89. {
  90. $this->state_id = $state_id;
  91. return $this;
  92. }
  93. public function getLat(): ?string
  94. {
  95. return (float) $this->lat;
  96. }
  97. public function setLat(string $lat): self
  98. {
  99. $this->lat = $lat;
  100. return $this;
  101. }
  102. public function getLng(): ?string
  103. {
  104. return (float) $this->lng;
  105. }
  106. public function setLng(string $lng): self
  107. {
  108. $this->lng = $lng;
  109. return $this;
  110. }
  111. public function getCity(): ?string
  112. {
  113. return (string) $this->city;
  114. }
  115. public function setCity(string $city): self
  116. {
  117. $this->city = $city;
  118. return $this;
  119. }
  120. public function getCounty(): ?string
  121. {
  122. return (string) $this->county;
  123. }
  124. public function setCounty(string $county): self
  125. {
  126. $this->county = $county;
  127. return $this;
  128. }
  129. public function getZip(): ?string
  130. {
  131. return (string) $this->zip;
  132. }
  133. public function setZip(int $zip): self
  134. {
  135. $this->zip = $zip;
  136. return $this;
  137. }
  138. public function getCountyWeights()
  139. {
  140. return $this->countyWeights;
  141. }
  142. public function setCountyWeights($countyWeights): self
  143. {
  144. $this->countyWeights = $countyWeights;
  145. return $this;
  146. }
  147. public function getCountyNamesAll(): ?string
  148. {
  149. return (string) $this->county_names_all;
  150. }
  151. public function setCountyNamesAll(string $county_names_all): self
  152. {
  153. $this->county_names_all = $county_names_all;
  154. return $this;
  155. }
  156. public function getCountyFips(): ?int
  157. {
  158. return $this->county_fips;
  159. }
  160. public function setCountyFips(int $county_fips): self
  161. {
  162. $this->county_fips = $county_fips;
  163. return $this;
  164. }
  165. public function getDensity(): ?float
  166. {
  167. return (float) $this->density;
  168. }
  169. public function setDensity(float $density): self
  170. {
  171. $this->density = $density;
  172. return $this;
  173. }
  174. public function getPopulation(): ?string
  175. {
  176. return (float) $this->population;
  177. }
  178. public function setPopulation(string $population): self
  179. {
  180. $this->population = $population;
  181. return $this;
  182. }
  183. public function getCountyFipsAll(): ?string
  184. {
  185. return $this->county_fips_all;
  186. }
  187. public function setCountyFipsAll(string $county_fips_all): self
  188. {
  189. $this->county_fips_all = $county_fips_all;
  190. return $this;
  191. }
  192. public function getMilitary(): ?bool
  193. {
  194. return $this->military;
  195. }
  196. public function setMilitary($military): self
  197. {
  198. $this->military = $military;
  199. return $this;
  200. }
  201. public function getTimezone(): ?string
  202. {
  203. return $this->timezone;
  204. }
  205. public function setTimezone(string $timezone): self
  206. {
  207. $this->timezone = $timezone;
  208. return $this;
  209. }
  210. public function getCountry(): ?string
  211. {
  212. return $this->country;
  213. }
  214. public function setCountry(string $country): self
  215. {
  216. $this->country = $country;
  217. return $this;
  218. }
  219. }