wpc
2018-11-27 680fbc9e73da3e11988557cf88fd935efd3e0b1e
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
package com.haicaojie.android.entity;
 
import com.google.gson.annotations.Expose;
 
import java.io.Serializable;
 
/**
 * Created by weikou2015 on 2017/3/7.
 */
 
public class JumpDetail implements Serializable {
    @Expose
    private String activity;
    @Expose
    private String id;
    @Expose
    private String name;
 
    public String getActivity() {
        return activity;
    }
 
    public void setActivity(String activity) {
        this.activity = activity;
    }
}