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;
|
|
|
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;
|
}
|
|
|
|
}
|