-
Notifications
You must be signed in to change notification settings - Fork 2
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
Showing
5 changed files
with
301 additions
and
1 deletion.
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
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
86 changes: 86 additions & 0 deletions
86
app/src/main/java/com/github/jsbxyyx/xbook/data/bean/QqVideoHotRank.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,86 @@ | ||
package com.github.jsbxyyx.xbook.data.bean; | ||
|
||
import java.util.List; | ||
|
||
public class QqVideoHotRank { | ||
|
||
private HotRankResult hotRankResult; | ||
private String tabName; | ||
private String tabId; | ||
|
||
public HotRankResult getHotRankResult() { | ||
return hotRankResult; | ||
} | ||
|
||
public void setHotRankResult(HotRankResult hotRankResult) { | ||
this.hotRankResult = hotRankResult; | ||
} | ||
|
||
public String getTabName() { | ||
return tabName; | ||
} | ||
|
||
public void setTabName(String tabName) { | ||
this.tabName = tabName; | ||
} | ||
|
||
public String getTabId() { | ||
return tabId; | ||
} | ||
|
||
public void setTabId(String tabId) { | ||
this.tabId = tabId; | ||
} | ||
|
||
public static class HotRankResult { | ||
private List<RankItem> rankItemList; | ||
private String totalSize; | ||
|
||
public List<RankItem> getRankItemList() { | ||
return rankItemList; | ||
} | ||
|
||
public void setRankItemList(List<RankItem> rankItemList) { | ||
this.rankItemList = rankItemList; | ||
} | ||
|
||
public String getTotalSize() { | ||
return totalSize; | ||
} | ||
|
||
public void setTotalSize(String totalSize) { | ||
this.totalSize = totalSize; | ||
} | ||
} | ||
|
||
public static class RankItem { | ||
private String changeOrder; | ||
private String dataType; | ||
private String title; | ||
|
||
public String getChangeOrder() { | ||
return changeOrder; | ||
} | ||
|
||
public void setChangeOrder(String changeOrder) { | ||
this.changeOrder = changeOrder; | ||
} | ||
|
||
public String getDataType() { | ||
return dataType; | ||
} | ||
|
||
public void setDataType(String dataType) { | ||
this.dataType = dataType; | ||
} | ||
|
||
public String getTitle() { | ||
return title; | ||
} | ||
|
||
public void setTitle(String title) { | ||
this.title = title; | ||
} | ||
} | ||
|
||
} |
32 changes: 32 additions & 0 deletions
32
app/src/main/java/com/github/jsbxyyx/xbook/data/bean/QqVideoHotWord.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,32 @@ | ||
package com.github.jsbxyyx.xbook.data.bean; | ||
|
||
public class QqVideoHotWord { | ||
|
||
private String searchWord; | ||
private String subTitle; | ||
private String type; | ||
|
||
public String getSearchWord() { | ||
return searchWord; | ||
} | ||
|
||
public void setSearchWord(String searchWord) { | ||
this.searchWord = searchWord; | ||
} | ||
|
||
public String getSubTitle() { | ||
return subTitle; | ||
} | ||
|
||
public void setSubTitle(String subTitle) { | ||
this.subTitle = subTitle; | ||
} | ||
|
||
public String getType() { | ||
return type; | ||
} | ||
|
||
public void setType(String type) { | ||
this.type = type; | ||
} | ||
} |
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