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.yeshi.buwan.domain;
 
import com.google.gson.annotations.Expose;
import com.yeshi.buwan.domain.system.DetailSystem;
 
public class SuperHotStar {
    @Expose
    private String id;
    @Expose
    private DetailSystem detailSystem;
    @Expose
    private HotStar hotStar;
    @Expose
    private String createtime;
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public DetailSystem getDetailSystem() {
        return detailSystem;
    }
 
    public void setDetailSystem(DetailSystem detailSystem) {
        this.detailSystem = detailSystem;
    }
 
    public HotStar getHotStar() {
        return hotStar;
    }
 
    public void setHotStar(HotStar hotStar) {
        this.hotStar = hotStar;
    }
 
    public String getCreatetime() {
        return createtime;
    }
 
    public void setCreatetime(String createtime) {
        this.createtime = createtime;
    }
 
}