admin
2021-06-07 01e23be6118d68d38a71d186296d440eadcaa197
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
package com.tejia.lijin.app.entity;
 
import com.google.gson.annotations.Expose;
 
import java.io.Serializable;
import java.util.List;
 
public class RewardDetail implements Serializable {
 
    @Expose
    private TextColor text;
    @Expose
    private Jump jump;
 
    public Jump getJump() {
        return jump;
    }
 
    public void setJump(Jump jump) {
        this.jump = jump;
    }
 
    public TextColor getText() {
        return text;
    }
 
    public void setText(TextColor text) {
        this.text = text;
    }
 
    @Expose
    private List<TextColorSet> ticking;//2.0.2新版奖励券倒计时
 
    public List<TextColorSet> getTicking() {
        return ticking;
    }
 
    public void setTicking(List<TextColorSet> ticking) {
        this.ticking = ticking;
    }
}