package com.yeshi.fanli.entity.xinge;
|
|
import org.yeshi.utils.generater.mybatis.Column;
|
import org.yeshi.utils.generater.mybatis.Table;
|
|
@Table("yeshi_ec_push_record")
|
public class PushRecord {
|
|
@Column(name = "id")
|
private Long id;
|
|
@Column(name = "url")
|
private String url;
|
|
@Column(name = "type")
|
private Integer type; // 1.商品推送 2.url推送 3.推荐详情页面推送 4.站内信
|
|
@Column(name = "title")
|
private String title;
|
|
@Column(name = "state")
|
private Integer state;// 1:都成功 2:仅android成功 3.仅IOS成功 4.都失败
|
|
@Column(name = "createtime")
|
private Long createtime;
|
|
@Column(name = "count")
|
private Long count;
|
|
@Column(name = "iosPushId")
|
private String iosPushId;
|
|
@Column(name = "androidPushId")
|
private String androidPushId;
|
|
@Column(name = "account")
|
private Integer account; // 接收对象 0:�?��设备 1:IOS设备 2:Android设备 3.单个账号 4.其他
|
|
@Column(name = "state")
|
private String appName;
|
|
@Column(name = "uid")
|
private Long uid;
|
|
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getUrl() {
|
return url;
|
}
|
|
public void setUrl(String url) {
|
this.url = url;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public Integer getState() {
|
return state;
|
}
|
|
public void setState(Integer state) {
|
this.state = state;
|
}
|
|
public Long getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(Long createtime) {
|
this.createtime = createtime;
|
}
|
|
public Long getCount() {
|
return count;
|
}
|
|
public void setCount(Long count) {
|
this.count = count;
|
}
|
|
public String getIosPushId() {
|
return iosPushId;
|
}
|
|
public void setIosPushId(String iosPushId) {
|
this.iosPushId = iosPushId;
|
}
|
|
public String getAndroidPushId() {
|
return androidPushId;
|
}
|
|
public void setAndroidPushId(String androidPushId) {
|
this.androidPushId = androidPushId;
|
}
|
|
public Integer getAccount() {
|
return account;
|
}
|
|
public void setAccount(Integer account) {
|
this.account = account;
|
}
|
|
public String getAppName() {
|
return appName;
|
}
|
|
public void setAppName(String appName) {
|
this.appName = appName;
|
}
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
|
}
|