package com.yeshi.fanli.vo.goods;
|
|
import java.io.Serializable;
|
|
import com.google.gson.annotations.Expose;
|
import com.yeshi.fanli.vo.tlj.ReduceHongBao;
|
import com.yeshi.fanli.vo.tlj.SpreadHongBao;
|
|
/**
|
* 其他信息
|
*
|
* @author Administrator
|
*
|
*/
|
public class OtherInfo implements Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
// 推广红包
|
@Expose
|
private SpreadHongBao spreadHongBao;
|
// 自购立减
|
@Expose
|
private ReduceHongBao reduceHongBao;
|
|
@Expose
|
private RewardCouponVO rewardCoupon;
|
|
@Expose
|
private String fanliMoneyPlus;
|
|
|
|
public RewardCouponVO getRewardCoupon() {
|
return rewardCoupon;
|
}
|
|
public void setRewardCoupon(RewardCouponVO rewardCoupon) {
|
this.rewardCoupon = rewardCoupon;
|
}
|
|
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 String getFanliMoneyPlus() {
|
return fanliMoneyPlus;
|
}
|
|
public void setFanliMoneyPlus(String fanliMoneyPlus) {
|
this.fanliMoneyPlus = fanliMoneyPlus;
|
}
|
}
|