admin
2021-04-02 545ce4665c1d506393908b55aafd681a45c774e6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.weikou.beibeivideo.entity.recommend;
 
import com.google.gson.annotations.Expose;
import com.weikou.beibeivideo.entity.VideoType;
 
public class HomeClass extends VideoType {
 
    @Expose
    private String dataType;//数据类型  "recommend"-推荐  "class"-分类  "novel"-小说 "common"-常见
 
    //数据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;
    }
}