package com.yeshi.fanli.entity.bus.user;
|
|
import java.util.Date;
|
|
import org.yeshi.utils.mybatis.Column;
|
import org.yeshi.utils.mybatis.Table;
|
|
import com.google.gson.annotations.Expose;
|
|
/**
|
* 设备抽奖获得记录
|
*
|
* @author Administrator
|
*
|
*/
|
@Table("yeshi_device_lottery_record")
|
public class DeviceLotteryRecord {
|
|
@Expose
|
@Column(name = "dlr_id")
|
private Long id;
|
|
// 平台 1-android 2-ios
|
@Column(name = "dlr_platform")
|
private Integer platform;
|
|
// 设备
|
@Column(name = "dlr_device")
|
private String device;
|
|
// 系统券
|
@Expose
|
@Column(name = "dlr_system_counpon_id")
|
private Long systemCouponId;
|
|
// 创建时间
|
@Column(name = "dlr_create_time")
|
private Date createTime;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Integer getPlatform() {
|
return platform;
|
}
|
|
public void setPlatform(Integer platform) {
|
this.platform = platform;
|
}
|
|
public String getDevice() {
|
return device;
|
}
|
|
public void setDevice(String device) {
|
this.device = device;
|
}
|
|
public Long getSystemCouponId() {
|
return systemCouponId;
|
}
|
|
public void setSystemCouponId(Long systemCouponId) {
|
this.systemCouponId = systemCouponId;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
}
|