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;
|
}
|
}
|