wangrenhuang
2022-07-14 578588fefc6f546cd589b77dfd8444708482080f
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
package com.hz.phis.dt.user.money;
 
import com.hz.his.dto.PageDto;
 
/**用户消费*/
public class UserConsumeDt extends PageDto {
 
    /**用户标识*/
    private String userId;
    /**金额类型*/
    private Integer type;
    /**操作类型*/
    private Integer opType;
 
    /**金额类型-储值金*/
    public static final int TYPE_STORED_VALUE_FUND = 0;
    /**金额类型-增值金*/
    public static final int TYPE_VALUE_ADDED_FUND = 1;
    /**金额类型-积分*/
    public static final int TYPE_INTEGRAL = 2;
    /**金额类型-预定金*/
    public static final int TYPE_DEPOSIT = 3;
 
    /**操作类型-增加*/
    public static final int OP_TYPE_INCREASE = 1;
    /**操作类型-减少*/
    public static final int OP_TYPE_REDUCE = 2;
 
    public String getUserId() {
        return userId;
    }
 
    public void setUserId(String userId) {
        this.userId = userId;
    }
 
    public Integer getType() {
        return type;
    }
 
    public void setType(Integer type) {
        this.type = type;
    }
 
    public Integer getOpType() {
        return opType;
    }
 
    public void setOpType(Integer opType) {
        this.opType = opType;
    }
 
 
}