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;
|
}
|
}
|