admin
2021-07-28 c0269fcfa876b9c5cf309b2006462b4d09c5ef95
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
43
44
45
46
47
48
package com.hanju.video.app.entity;
 
import com.google.gson.annotations.Expose;
 
public class HomeTypeItem {
    public HomeTypeItem() {
 
    }
 
    private String id;
    private HomeType parent;
    @Expose
    private HomeType item;
    private String createtime;
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public HomeType getParent() {
        return parent;
    }
 
    public void setParent(HomeType parent) {
        this.parent = parent;
    }
 
    public HomeType getItem() {
        return item;
    }
 
    public void setItem(HomeType item) {
        this.item = item;
    }
 
    public String getCreatetime() {
        return createtime;
    }
 
    public void setCreatetime(String createtime) {
        this.createtime = createtime;
    }
 
}