package com.yeshi.fanli.dto.msg;
|
|
/**
|
* 红包提现相关消息
|
*
|
* @author Administrator
|
*
|
*/
|
public class MsgRedPackExchangeContentDTO {
|
|
private String title; // 标题
|
private String time; // 时间
|
private String money; // 金额
|
private String balance; // 余额
|
private String reason; //原因
|
private String handle; // 处理
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getTime() {
|
return time;
|
}
|
|
public void setTime(String time) {
|
this.time = time;
|
}
|
|
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;
|
}
|
|
public String getReason() {
|
return reason;
|
}
|
|
public void setReason(String reason) {
|
this.reason = reason;
|
}
|
|
public String getHandle() {
|
return handle;
|
}
|
|
public void setHandle(String handle) {
|
this.handle = handle;
|
}
|
}
|