package com.tejia.lijin.app.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
import java.io.Serializable;
|
|
public class GoodsOtherInfo implements Serializable {
|
@Expose
|
private SpreadHongBao spreadHongBao; // 推广红包
|
@Expose
|
private ReduceHongBao reduceHongBao;// 自购立减
|
@Expose
|
private RewardCoupon rewardCoupon;// 奖励券信息 2.0.0开始生效
|
@Expose
|
private String fanliMoneyPlus;//京东plus价格信息
|
|
public String getFanliMoneyPlus() {
|
return fanliMoneyPlus;
|
}
|
|
public void setFanliMoneyPlus(String fanliMoneyPlus) {
|
this.fanliMoneyPlus = fanliMoneyPlus;
|
}
|
|
|
|
public SpreadHongBao getSpreadHongBao() {
|
return spreadHongBao;
|
}
|
|
public void setSpreadHongBao(SpreadHongBao spreadHongBao) {
|
this.spreadHongBao = spreadHongBao;
|
}
|
|
public ReduceHongBao getReduceHongBao() {
|
return reduceHongBao;
|
}
|
|
public void setReduceHongBao(ReduceHongBao reduceHongBao) {
|
this.reduceHongBao = reduceHongBao;
|
}
|
|
public RewardCoupon getRewardCoupon() {
|
return rewardCoupon;
|
}
|
|
public void setRewardCoupon(RewardCoupon rewardCoupon) {
|
this.rewardCoupon = rewardCoupon;
|
}
|
}
|