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
package com.yeshi.fanli.vo.order;
 
import java.io.Serializable;
import java.math.BigDecimal;
 
import com.yeshi.fanli.entity.bus.user.HongBaoV2;
 
/**
 * 红包v2
 * 
 */
 
public class HongBaoV2VO extends HongBaoV2 implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    // 总金额
    private BigDecimal totalMoney;
 
    // 总金额-有效
    private BigDecimal validMoney;
 
    // 当前状态
    private int currentState;
 
    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;
    }
 
}