| | |
| | | public class HomeClass extends VideoType { |
| | | |
| | | @Expose |
| | | private String dataType;//数据类型 "recommend"-推荐 "class"-分类 "novel"-小说 |
| | | private String dataType;//数据类型 "recommend"-推荐 "class"-分类 "novel"-小说 "common"-常见 "feedVideos"-feed流 |
| | | |
| | | //数据Key |
| | | @Expose |
| | | private String dataKey; |
| | | |
| | | //字体颜色 |
| | | @Expose |
| | | private String color; |
| | | |
| | | public String getDataType() { |
| | | return dataType; |
| | |
| | | public void setDataType(String dataType) { |
| | | this.dataType = dataType; |
| | | } |
| | | |
| | | public String getDataKey() { |
| | | return dataKey; |
| | | } |
| | | |
| | | public void setDataKey(String dataKey) { |
| | | this.dataKey = dataKey; |
| | | } |
| | | |
| | | public String getColor() { |
| | | return color; |
| | | } |
| | | |
| | | public void setColor(String color) { |
| | | this.color = color; |
| | | } |
| | | } |