|
@@ -0,0 +1,78 @@
|
|
|
+/**
|
|
|
+ * Copyright 2021 bejson.com
|
|
|
+ */
|
|
|
+package com.gyee.frame.model.custom.weather;
|
|
|
+
|
|
|
+/**
|
|
|
+ * Auto-generated: 2021-07-12 15:16:38
|
|
|
+ *
|
|
|
+ * @author bejson.com (i@bejson.com)
|
|
|
+ * @website http://www.bejson.com/java2pojo/
|
|
|
+ */
|
|
|
+public class City {
|
|
|
+
|
|
|
+ private long id;
|
|
|
+ private String name;
|
|
|
+ private Coord coord;
|
|
|
+ private String country;
|
|
|
+ private int population;
|
|
|
+ private int timezone;
|
|
|
+ private long sunrise;
|
|
|
+ private long sunset;
|
|
|
+ public void setId(long id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+ public long getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setName(String name) {
|
|
|
+ this.name = name;
|
|
|
+ }
|
|
|
+ public String getName() {
|
|
|
+ return name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCoord(Coord coord) {
|
|
|
+ this.coord = coord;
|
|
|
+ }
|
|
|
+ public Coord getCoord() {
|
|
|
+ return coord;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCountry(String country) {
|
|
|
+ this.country = country;
|
|
|
+ }
|
|
|
+ public String getCountry() {
|
|
|
+ return country;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPopulation(int population) {
|
|
|
+ this.population = population;
|
|
|
+ }
|
|
|
+ public int getPopulation() {
|
|
|
+ return population;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTimezone(int timezone) {
|
|
|
+ this.timezone = timezone;
|
|
|
+ }
|
|
|
+ public int getTimezone() {
|
|
|
+ return timezone;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSunrise(long sunrise) {
|
|
|
+ this.sunrise = sunrise;
|
|
|
+ }
|
|
|
+ public long getSunrise() {
|
|
|
+ return sunrise;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSunset(long sunset) {
|
|
|
+ this.sunset = sunset;
|
|
|
+ }
|
|
|
+ public long getSunset() {
|
|
|
+ return sunset;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|