-
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
1699427
commit bc55d80
Showing
4 changed files
with
92 additions
and
23 deletions.
There are no files selected for viewing
60 changes: 60 additions & 0 deletions
60
app/src/main/java/com/maning/gankmm/bean/rolltools/MobileLocationResultBean.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,60 @@ | ||
package com.maning.gankmm.bean.rolltools; | ||
|
||
/** | ||
* @author : maning | ||
* @date : 2020-10-15 | ||
* @desc : | ||
*/ | ||
public class MobileLocationResultBean extends RollToolsBaseBean { | ||
|
||
|
||
/** | ||
* data : {"mobile":"13227293721","province":"湖北","carrier":"湖北联通"} | ||
*/ | ||
|
||
private DataEntity data; | ||
|
||
public DataEntity getData() { | ||
return data; | ||
} | ||
|
||
public void setData(DataEntity data) { | ||
this.data = data; | ||
} | ||
|
||
public static class DataEntity { | ||
/** | ||
* mobile : 13227293721 | ||
* province : 湖北 | ||
* carrier : 湖北联通 | ||
*/ | ||
|
||
private String mobile; | ||
private String province; | ||
private String carrier; | ||
|
||
public String getMobile() { | ||
return mobile; | ||
} | ||
|
||
public void setMobile(String mobile) { | ||
this.mobile = mobile; | ||
} | ||
|
||
public String getProvince() { | ||
return province; | ||
} | ||
|
||
public void setProvince(String province) { | ||
this.province = province; | ||
} | ||
|
||
public String getCarrier() { | ||
return carrier; | ||
} | ||
|
||
public void setCarrier(String carrier) { | ||
this.carrier = carrier; | ||
} | ||
} | ||
} |
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