admin
2021-03-13 3c853e808d9e617662fd4ce207d609daa8681df3
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
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;
 
    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;
    }
}