package com.yeshi.buwan.dto.tb;
|
|
import com.google.gson.annotations.Expose;
|
|
public class TLJBuyHongBaoVO {
|
|
@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;
|
}
|
}
|