package com.tejia.lijin.app.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
import java.io.Serializable;
|
|
/**
|
* 淘礼金的信息
|
*/
|
public class TaolijinBuyHongbao implements Serializable {
|
|
@Expose
|
private String tagName;
|
@Expose
|
private int total; // 总数
|
@Expose
|
private int left;// 剩余
|
@Expose
|
private String money;
|
@Expose
|
private String tip;
|
|
public String getTagName() {
|
return tagName;
|
}
|
|
public void setTagName(String tagName) {
|
this.tagName = tagName;
|
}
|
|
public int getTotal() {
|
return total;
|
}
|
|
public void setTotal(int total) {
|
this.total = total;
|
}
|
|
public int getLeft() {
|
return left;
|
}
|
|
public void setLeft(int left) {
|
this.left = left;
|
}
|
|
public String getMoney() {
|
return money;
|
}
|
|
public void setMoney(String money) {
|
this.money = money;
|
}
|
|
public String getTip() {
|
return tip;
|
}
|
|
public void setTip(String tip) {
|
this.tip = tip;
|
}
|
}
|