package com.yeshi.fanli.entity.redpack;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
import org.springframework.data.mongodb.core.mapping.Document;
|
import org.springframework.data.mongodb.core.mapping.Field;
|
|
/**
|
* 红包获得记录-新人相关
|
*
|
* @author Administrator
|
*
|
*/
|
@Document(collection = "yeshi_ec_red_pack_win_new_user")
|
public class RedPackWinNewUser {
|
// 用户id
|
@Field("id")
|
private String uid;
|
// 领取金额
|
@Field("money")
|
private BigDecimal money;
|
// 领取次数
|
@Field("num")
|
private Integer num;
|
|
@Field("createTime")
|
private Date createTime;
|
|
@Field("updateTime")
|
private Date updateTime;
|
|
|
public String getUid() {
|
return uid;
|
}
|
|
public void setUid(String uid) {
|
this.uid = uid;
|
}
|
|
public BigDecimal getMoney() {
|
return money;
|
}
|
|
public void setMoney(BigDecimal money) {
|
this.money = money;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public Integer getNum() {
|
return num;
|
}
|
|
public void setNum(Integer num) {
|
this.num = num;
|
}
|
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
}
|