-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7f6906e
commit 1f9b424
Showing
26 changed files
with
1,931 additions
and
100 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
105 changes: 105 additions & 0 deletions
105
app/src/main/java/com/maning/gankmm/bean/weather/CaiyunWeatherBaseBean.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
package com.maning.gankmm.bean.weather; | ||
|
||
import java.util.List; | ||
|
||
/** | ||
* @author : maning | ||
* @date : 2020-10-14 | ||
* @desc : | ||
*/ | ||
public class CaiyunWeatherBaseBean { | ||
|
||
/** | ||
* status : ok | ||
* api_version : v2.5 | ||
* api_status : active | ||
* lang : zh_CN | ||
* unit : metric | ||
* tzshift : 28800 | ||
* timezone : Asia/Taipei | ||
* server_time : 1602674989 | ||
* location : [25.1552,121.6544] | ||
*/ | ||
|
||
private String status; | ||
private String api_version; | ||
private String api_status; | ||
private String lang; | ||
private String unit; | ||
private int tzshift; | ||
private String timezone; | ||
private int server_time; | ||
private List<Double> location; | ||
|
||
public String getStatus() { | ||
return status; | ||
} | ||
|
||
public void setStatus(String status) { | ||
this.status = status; | ||
} | ||
|
||
public String getApi_version() { | ||
return api_version; | ||
} | ||
|
||
public void setApi_version(String api_version) { | ||
this.api_version = api_version; | ||
} | ||
|
||
public String getApi_status() { | ||
return api_status; | ||
} | ||
|
||
public void setApi_status(String api_status) { | ||
this.api_status = api_status; | ||
} | ||
|
||
public String getLang() { | ||
return lang; | ||
} | ||
|
||
public void setLang(String lang) { | ||
this.lang = lang; | ||
} | ||
|
||
public String getUnit() { | ||
return unit; | ||
} | ||
|
||
public void setUnit(String unit) { | ||
this.unit = unit; | ||
} | ||
|
||
public int getTzshift() { | ||
return tzshift; | ||
} | ||
|
||
public void setTzshift(int tzshift) { | ||
this.tzshift = tzshift; | ||
} | ||
|
||
public String getTimezone() { | ||
return timezone; | ||
} | ||
|
||
public void setTimezone(String timezone) { | ||
this.timezone = timezone; | ||
} | ||
|
||
public int getServer_time() { | ||
return server_time; | ||
} | ||
|
||
public void setServer_time(int server_time) { | ||
this.server_time = server_time; | ||
} | ||
|
||
public List<Double> getLocation() { | ||
return location; | ||
} | ||
|
||
public void setLocation(List<Double> location) { | ||
this.location = location; | ||
} | ||
} |
Oops, something went wrong.