yujian
2019-07-11 e4a56b57d3e10b9b46eaefe5194bbf98fcc45698
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
package com.yeshi.fanli.vo.tlj;
 
import com.google.gson.annotations.Expose;
 
public class ReduceHongBao {
    @Expose
    private String name;
    @Expose
    private String money;
    @Expose
    private String tip;
    @Expose
    private Integer total;
    @Expose
    private Integer 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;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
}