yujian
2020-04-10 469bba3a544b3beef0c170f6fce5804c9e8a9676
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package com.yeshi.fanli.vo.order;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * 红包v2统计数据
 * 
 */
 
public class HongBaoCountVO {
 
    // 总金额
    private BigDecimal totalMoney;
 
    // 总金额-有效
    private BigDecimal validMoney;
 
    // 当前状态
    private int currentState;
    
    // 到账时间
    private Date accountTime;
    
    // 当前类型
    private int type;
    
 
    public BigDecimal getTotalMoney() {
        return totalMoney;
    }
 
    public void setTotalMoney(BigDecimal totalMoney) {
        this.totalMoney = totalMoney;
    }
 
    public BigDecimal getValidMoney() {
        return validMoney;
    }
 
    public void setValidMoney(BigDecimal validMoney) {
        this.validMoney = validMoney;
    }
 
    public int getCurrentState() {
        return currentState;
    }
 
    public void setCurrentState(int currentState) {
        this.currentState = currentState;
    }
 
    public Date getAccountTime() {
        return accountTime;
    }
 
    public void setAccountTime(Date accountTime) {
        this.accountTime = accountTime;
    }
 
    public int getType() {
        return type;
    }
 
    public void setType(int type) {
        this.type = type;
    }
}