package com.tejia.lijin.app.entity;
|
|
import com.alibaba.fastjson.JSONObject;
|
import com.google.gson.annotations.Expose;
|
|
import java.io.Serializable;
|
|
/**
|
* 实体类父类(集中了params+jumpDetail )
|
*/
|
public class EntityFather implements Serializable {
|
@Expose
|
private JSONObject params;
|
@Expose
|
private JumpDetail jumpDetail;
|
|
public JSONObject getParams() {
|
return params;
|
}
|
|
public void setParams(JSONObject params) {
|
this.params = params;
|
}
|
|
public JumpDetail getJumpDetail() {
|
return jumpDetail;
|
}
|
|
public void setJumpDetail(JumpDetail jumpDetail) {
|
this.jumpDetail = jumpDetail;
|
}
|
}
|