fhx
2024-04-11 8aabd6f9a44fb4de7ef2c70ff0a15fc000f4b5d9
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
package com.hz.his.dto.user.money;
 
import com.hz.his.dto.PageDto;
import lombok.Data;
 
/**
 * @author fwq
 * 用户消费
 * */
@Data
public class UserConsumeDto 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;
 
}