提交 | 用户 | age
|
f5bce1
|
1 |
package com.hz.his.dto.user.money; |
F |
2 |
|
|
3 |
import com.hz.his.dto.PageDto; |
|
4 |
import lombok.Data; |
|
5 |
|
|
6 |
/** |
|
7 |
* @author fwq |
|
8 |
* 用户消费 |
|
9 |
* */ |
|
10 |
@Data |
|
11 |
public class UserConsumeDto extends PageDto { |
|
12 |
|
|
13 |
/**用户标识*/ |
|
14 |
private String userId; |
|
15 |
/**金额类型*/ |
|
16 |
private Integer type; |
|
17 |
/**操作类型*/ |
|
18 |
private Integer opType; |
|
19 |
|
|
20 |
/**金额类型-储值金*/ |
|
21 |
public static final int TYPE_STORED_VALUE_FUND = 0; |
|
22 |
/**金额类型-增值金*/ |
|
23 |
public static final int TYPE_VALUE_ADDED_FUND = 1; |
|
24 |
/**金额类型-积分*/ |
|
25 |
public static final int TYPE_INTEGRAL = 2; |
|
26 |
/**金额类型-预定金*/ |
|
27 |
public static final int TYPE_DEPOSIT = 3; |
|
28 |
|
|
29 |
/**操作类型-增加*/ |
|
30 |
public static final int OP_TYPE_INCREASE = 1; |
|
31 |
/**操作类型-减少*/ |
|
32 |
public static final int OP_TYPE_REDUCE = 2; |
|
33 |
|
|
34 |
} |