package com.yeshi.buwan.dto.tb;
|
|
import com.google.gson.annotations.Expose;
|
|
import java.math.BigDecimal;
|
|
//密朵红包信息
|
public class TaoBaoHongBaoInfo {
|
@Expose
|
private BigDecimal hongbao;
|
|
@Expose
|
private String rate;
|
|
/**
|
* 0:红包 1:比率
|
*/
|
@Expose
|
private int type;
|
|
public BigDecimal getHongbao() {
|
return hongbao;
|
}
|
|
public void setHongbao(BigDecimal hongbao) {
|
this.hongbao = hongbao;
|
}
|
|
public String getRate() {
|
return rate;
|
}
|
|
public void setRate(String rate) {
|
this.rate = rate;
|
}
|
|
public int getType() {
|
return type;
|
}
|
|
public void setType(int type) {
|
this.type = type;
|
}
|
|
}
|