package com.tejia.lijin.app.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
import java.io.Serializable;
|
|
/**
|
* Created by weikou2015 on 2017/3/16.
|
*/
|
|
public class HongBaoInfo implements Serializable {
|
@Expose
|
private String hongbao;
|
@Expose
|
private String type;
|
@Expose
|
private String rate;
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getRate() {
|
return rate;
|
}
|
|
public void setRate(String rate) {
|
this.rate = rate;
|
}
|
|
public String getHongbao() {
|
return hongbao;
|
}
|
|
public void setHongbao(String hongbao) {
|
this.hongbao = hongbao;
|
}
|
}
|