fwq
2022-07-22 f5bce1128a4b9c8ccc0eb636747d060ce93e3135
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
package com.hz.his.dto.user.money;
 
import com.hz.his.dto.PageDto;
import lombok.Data;
 
/**
 * 用户待领取增值金列表
 * @author fwq
 * */
@Data
public class UserWaitIncDto extends PageDto {
    /**phis用户标识*/
    private String userId;
    /**资金类型*/
    private Integer fundType;
    /**资金操作类型,增或者减*/
    private Integer fundOpType;
    /**状态0 等待处理 1 处理成功*/
    private Integer status;
 
 
    /**资金类型-储值金*/
    public static final int FUND_TYPE_STORED_VALUE_FUND = 0;
    /**资金类型-增值金*/
    public static final int FUND_TYPE_VALUE_ADDED_FUND = 1;
    /**资金类型-积分*/
    public static final int FUND_TYPE_INTEGRAL = 2;
    /**资金类型-预定金*/
    public static final int FUND_TYPE_DEPOSIT = 3;
 
    /**等待处理*/
    public static final int STATUS_WAI = 0;
    /**处理成功*/
    public static final int STATUS_SUCCEED = 1;
 
    /**操作人类型-系统处理 系统处理没有操作人id和操作人名称*/
    public static final int OPERATOR_TYPE_SYSTEM = 0;
    /**操作人类型-后台账号*/
    public static final int OPERATOR_TYPE_ADMIN = 1;
    /**操作人类型-用户*/
    public static final int OPERATOR_TYPE_USER = 2;
    /**操作人类型-员工*/
    public static final int OPERATOR_TYPE_EMPLOYEE = 3;
 
    /**资金操作类型-减少*/
    public static final int FUND_OP_TYPE_REDUCE = 0;
    /**资金操作类型-增加*/
    public static final int FUND_OP_TYPE_INCREASE = 1;
 
    /**操作类型-系统处理*/
    public static final int OP_TYPE_SYSTEM = 0;
    /**操作类型-用户领取*/
    public static final int OP_TYPE_RECEIVE = 1;
 
    /**发送短信状态-失败*/
    public static Integer SMS_STATUS_FALL = -1;
    /**发送短信状态-未发送*/
    public static Integer SMS_STATUS_UNSENT = 0;
    /**发送短信状态-成功*/
    public static Integer SMS_STATUS_SUCCEED = 1;
}