package com.tejia.lijin.app.entity;
|
|
import com.alibaba.fastjson.JSONObject;
|
import com.google.gson.annotations.Expose;
|
|
import java.io.Serializable;
|
|
public class Jump implements Serializable {
|
@Expose
|
private JumpDetail jumpDetail;
|
@Expose
|
private int type;
|
@Expose
|
private JSONObject params;
|
|
|
public JumpDetail getJumpDetail() {
|
return jumpDetail;
|
}
|
|
public void setJumpDetail(JumpDetail jumpDetail) {
|
this.jumpDetail = jumpDetail;
|
}
|
|
public int getType() {
|
return type;
|
}
|
|
public void setType(int type) {
|
this.type = type;
|
}
|
|
public JSONObject getParams() {
|
return params;
|
}
|
|
public void setParams(JSONObject params) {
|
this.params = params;
|
}
|
}
|