package com.yeshi.fanli.dto.money;
|
|
import java.math.BigDecimal;
|
|
/**
|
* 用户资金变化
|
*
|
* @author Administrator
|
*
|
*/
|
public class UserMoneyChangeDTO {
|
private Long uid;
|
private BigDecimal chnageMoney;// 变化的资金金额
|
|
public UserMoneyChangeDTO() {
|
|
}
|
|
public UserMoneyChangeDTO(Long uid, BigDecimal chnageMoney) {
|
this.uid = uid;
|
this.chnageMoney = chnageMoney;
|
}
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
|
public BigDecimal getChnageMoney() {
|
return chnageMoney;
|
}
|
|
public void setChnageMoney(BigDecimal chnageMoney) {
|
this.chnageMoney = chnageMoney;
|
}
|
}
|