fwq
2022-07-22 f5bce1128a4b9c8ccc0eb636747d060ce93e3135
提交 | 用户 | age
f5bce1 1 package com.hz.his.dto.user.money;
d139c6 2
F 3 import com.hz.his.dto.PageDto;
f5bce1 4 import lombok.Data;
d139c6 5
F 6 /**
7  * 用户待领取增值金列表
8  * @author fwq
9  * */
f5bce1 10 @Data
F 11 public class UserWaitIncDto extends PageDto {
d139c6 12     /**phis用户标识*/
F 13     private String userId;
14     /**资金类型*/
15     private Integer fundType;
16     /**资金操作类型,增或者减*/
17     private Integer fundOpType;
18     /**状态0 等待处理 1 处理成功*/
19     private Integer status;
20
21
22     /**资金类型-储值金*/
23     public static final int FUND_TYPE_STORED_VALUE_FUND = 0;
24     /**资金类型-增值金*/
25     public static final int FUND_TYPE_VALUE_ADDED_FUND = 1;
26     /**资金类型-积分*/
27     public static final int FUND_TYPE_INTEGRAL = 2;
28     /**资金类型-预定金*/
29     public static final int FUND_TYPE_DEPOSIT = 3;
30
31     /**等待处理*/
32     public static final int STATUS_WAI = 0;
33     /**处理成功*/
34     public static final int STATUS_SUCCEED = 1;
35
36     /**操作人类型-系统处理 系统处理没有操作人id和操作人名称*/
37     public static final int OPERATOR_TYPE_SYSTEM = 0;
38     /**操作人类型-后台账号*/
39     public static final int OPERATOR_TYPE_ADMIN = 1;
40     /**操作人类型-用户*/
41     public static final int OPERATOR_TYPE_USER = 2;
42     /**操作人类型-员工*/
43     public static final int OPERATOR_TYPE_EMPLOYEE = 3;
44
45     /**资金操作类型-减少*/
46     public static final int FUND_OP_TYPE_REDUCE = 0;
47     /**资金操作类型-增加*/
48     public static final int FUND_OP_TYPE_INCREASE = 1;
49
50     /**操作类型-系统处理*/
51     public static final int OP_TYPE_SYSTEM = 0;
52     /**操作类型-用户领取*/
53     public static final int OP_TYPE_RECEIVE = 1;
54
55     /**发送短信状态-失败*/
56     public static Integer SMS_STATUS_FALL = -1;
57     /**发送短信状态-未发送*/
58     public static Integer SMS_STATUS_UNSENT = 0;
59     /**发送短信状态-成功*/
60     public static Integer SMS_STATUS_SUCCEED = 1;
61 }