admin
2021-06-07 01e23be6118d68d38a71d186296d440eadcaa197
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
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;
    }
}