admin
2020-06-17 87b391b8a81ee2abdaa4131d245784ecc7a54e9a
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
91
92
93
package com.ks.tool.bkz.entity.user;
 
import java.util.Date;
 
/**
 * 卡密
 */
public class CardPwdInfo {
    public final static int STATE_NOT_CONSUME=0;//未被消费
    public final static int STATE_CONSUMED=1;//已被消费
 
    private Long id;
    private String card;//卡号
    private String pwd;//密码
    private Integer type;//类型
    private Integer consumeState;//消费状态
    private Date consumeTime;//消费时间
    private Long consumeUid;//消费用户ID
    private Date createTime;//创建时间
    private Date updateTime;//更新时间
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getCard() {
        return card;
    }
 
    public void setCard(String card) {
        this.card = card;
    }
 
    public String getPwd() {
        return pwd;
    }
 
    public void setPwd(String pwd) {
        this.pwd = pwd;
    }
 
    public Integer getType() {
        return type;
    }
 
    public void setType(Integer type) {
        this.type = type;
    }
 
    public Integer getConsumeState() {
        return consumeState;
    }
 
    public void setConsumeState(Integer consumeState) {
        this.consumeState = consumeState;
    }
 
    public Date getConsumeTime() {
        return consumeTime;
    }
 
    public void setConsumeTime(Date consumeTime) {
        this.consumeTime = consumeTime;
    }
 
    public Long getConsumeUid() {
        return consumeUid;
    }
 
    public void setConsumeUid(Long consumeUid) {
        this.consumeUid = consumeUid;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
}