admin
2019-04-26 8e30aa7c1f0384f09278699318b4902b815b42a7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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;
    }
}