fwq
2022-07-19 d139c6ecde59c6963b0a7f2b8c9b6d6f9094e049
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package com.hz.phis.dt.user.money;
 
import com.hz.his.dto.PageDto;
 
/**
 * 用户待领取增值金列表
 * @author fwq
 * */
public class UserWaitIncDt extends PageDto {
    /**phis用户标识*/
    private String userId;
    /**资金类型*/
    private Integer fundType;
    /**资金操作类型,增或者减*/
    private Integer fundOpType;
    /**状态0 等待处理 1 处理成功*/
    private Integer status;
 
    public String getUserId() {
        return userId;
    }
 
    public void setUserId(String userId) {
        this.userId = userId;
    }
 
    public Integer getFundType() {
        return fundType;
    }
 
    public void setFundType(Integer fundType) {
        this.fundType = fundType;
    }
 
    public Integer getFundOpType() {
        return fundOpType;
    }
 
    public void setFundOpType(Integer fundOpType) {
        this.fundOpType = fundOpType;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = 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;
}