wangrenhuang
2022-07-14 578588fefc6f546cd589b77dfd8444708482080f
提交 | 用户 | age
7c680b 1 package com.hz.phis.dt.user.money;
C 2
34fb19 3 import com.hz.his.dto.PageDto;
7c680b 4
34fb19 5 /**用户消费*/
F 6 public class UserConsumeDt extends PageDto {
7c680b 7
C 8     /**用户标识*/
9     private String userId;
34fb19 10     /**金额类型*/
F 11     private Integer type;
12     /**操作类型*/
13     private Integer opType;
14
15     /**金额类型-储值金*/
16     public static final int TYPE_STORED_VALUE_FUND = 0;
17     /**金额类型-增值金*/
18     public static final int TYPE_VALUE_ADDED_FUND = 1;
19     /**金额类型-积分*/
20     public static final int TYPE_INTEGRAL = 2;
21     /**金额类型-预定金*/
22     public static final int TYPE_DEPOSIT = 3;
23
24     /**操作类型-增加*/
25     public static final int OP_TYPE_INCREASE = 1;
26     /**操作类型-减少*/
27     public static final int OP_TYPE_REDUCE = 2;
28
29     public String getUserId() {
30         return userId;
31     }
32
33     public void setUserId(String userId) {
34         this.userId = userId;
35     }
36
37     public Integer getType() {
38         return type;
39     }
40
41     public void setType(Integer type) {
42         this.type = type;
43     }
44
45     public Integer getOpType() {
46         return opType;
47     }
48
49     public void setOpType(Integer opType) {
50         this.opType = opType;
51     }
52
53
7c680b 54 }