yujian
2019-10-31 2a3e411612bf75b81a8789127a714b5c5e28bc43
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
package com.yeshi.fanli.dto.msg;
 
/**
 * 红包增加相关消息
 * 
 * @author Administrator
 *
 */
public class MsgRedPackAddContentDTO {
    private String title; // 标题
    private String money; // 金额
    private String balance; // 余额
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getMoney() {
        return money;
    }
 
    public void setMoney(String money) {
        this.money = money;
    }
 
    public String getBalance() {
        return balance;
    }
 
    public void setBalance(String balance) {
        this.balance = balance;
    }
}