admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
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;
    }
 
}