package com.yeshi.fanli.dto.mq.user.body;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
import com.yeshi.fanli.dto.mq.BaseMQMsgBody;
|
|
/**
|
* 邀请信息
|
*
|
* @author Administrator
|
*
|
*/
|
public class UserMoneyChangeMQMsg extends BaseMQMsgBody {
|
private Long uid;
|
private BigDecimal changeMoney;// 改变的金额
|
private Date createTime;// 发生时间
|
|
public UserMoneyChangeMQMsg(Long uid, BigDecimal changeMoney, Date createTime) {
|
super();
|
this.uid = uid;
|
this.changeMoney = changeMoney;
|
this.createTime = createTime;
|
}
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
|
public BigDecimal getChangeMoney() {
|
return changeMoney;
|
}
|
|
public void setChangeMoney(BigDecimal changeMoney) {
|
this.changeMoney = changeMoney;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
}
|