package com.yeshi.fanli.dto.money;
|
|
import java.math.BigDecimal;
|
|
/**
|
* 用户资金变化
|
*
|
* @author Administrator
|
*
|
*/
|
public class UserMoneyChangeDTO {
|
private Long uid;
|
private BigDecimal changeMoney;// 变化的资金金额
|
|
public UserMoneyChangeDTO() {
|
|
}
|
|
public UserMoneyChangeDTO(Long uid, BigDecimal changeMoney) {
|
this.uid = uid;
|
this.changeMoney = changeMoney;
|
}
|
|
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;
|
}
|
|
}
|