package com.tejia.lijin.app.entity;
|
|
import com.alibaba.fastjson.JSONObject;
|
import com.google.gson.annotations.Expose;
|
|
import java.io.Serializable;
|
|
public class RewardCoupon implements Serializable {
|
@Expose
|
String maxMoney;
|
@Expose
|
String desc;
|
@Expose
|
JumpDetail jumpDetail;
|
@Expose
|
JSONObject params;
|
@Expose
|
String maxMoneyPlus;//京东plus会员最高返利金额
|
|
public String getMaxMoneyPlus() {
|
return maxMoneyPlus;
|
}
|
|
public void setMaxMoneyPlus(String maxMoneyPlus) {
|
this.maxMoneyPlus = maxMoneyPlus;
|
}
|
|
|
|
public String getMaxMoney() {
|
return maxMoney;
|
}
|
|
public void setMaxMoney(String maxMoney) {
|
this.maxMoney = maxMoney;
|
}
|
|
public String getDesc() {
|
return desc;
|
}
|
|
public void setDesc(String desc) {
|
this.desc = desc;
|
}
|
|
public JumpDetail getJumpDetail() {
|
return jumpDetail;
|
}
|
|
public void setJumpDetail(JumpDetail jumpDetail) {
|
this.jumpDetail = jumpDetail;
|
}
|
|
public JSONObject getParams() {
|
return params;
|
}
|
|
public void setParams(JSONObject params) {
|
this.params = params;
|
}
|
|
}
|