-
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
6bc9fce
commit a6edd76
Showing
29 changed files
with
392 additions
and
726 deletions.
There are no files selected for viewing
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
58 changes: 58 additions & 0 deletions
58
app/src/main/java/com/maning/gankmm/bean/rolltools/WorldPhoneCodeResultBean.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,58 @@ | ||
package com.maning.gankmm.bean.rolltools; | ||
|
||
import java.util.List; | ||
|
||
/** | ||
* @author : maning | ||
* @date : 2020-10-15 | ||
* @desc : | ||
*/ | ||
public class WorldPhoneCodeResultBean extends RollToolsBaseBean { | ||
|
||
|
||
private List<DataEntity> data; | ||
|
||
public List<DataEntity> getData() { | ||
return data; | ||
} | ||
|
||
public void setData(List<DataEntity> data) { | ||
this.data = data; | ||
} | ||
|
||
public static class DataEntity { | ||
/** | ||
* zhCn : 中国 | ||
* enUs : China | ||
* phoneCode : +86 | ||
*/ | ||
|
||
private String zhCn; | ||
private String enUs; | ||
private String phoneCode; | ||
|
||
public String getZhCn() { | ||
return zhCn; | ||
} | ||
|
||
public void setZhCn(String zhCn) { | ||
this.zhCn = zhCn; | ||
} | ||
|
||
public String getEnUs() { | ||
return enUs; | ||
} | ||
|
||
public void setEnUs(String enUs) { | ||
this.enUs = enUs; | ||
} | ||
|
||
public String getPhoneCode() { | ||
return phoneCode; | ||
} | ||
|
||
public void setPhoneCode(String phoneCode) { | ||
this.phoneCode = phoneCode; | ||
} | ||
} | ||
} |
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
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
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
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
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
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
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
Oops, something went wrong.