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;
|
}
|
}
|