yujian
2020-06-01 d48079c9eeec9c4f19f550a44d461275b4a31fd4
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
package com.yeshi.fanli.entity.bus.user.cloud;
 
import java.util.Date;
 
import org.springframework.data.annotation.Id;
import org.springframework.data.mongodb.core.index.Indexed;
import org.springframework.data.mongodb.core.mapping.Document;
import org.springframework.data.mongodb.core.mapping.Field;
 
/**
 * 用户粉丝统计记录-每日
 * 
 * @author Administrator
 *
 */
@Document(collection = "userCloudSendRecord")
public class UserCloudSendRecord {
 
    public final static int SEND_WAY_AUTO = 1; // 官方自动
    public final static int SEND_WAY_MANUAL = 2; // 手动
 
    public final static String ORIGIN_STORE = "store"; // 商品库
    public final static String ORIGIN_EVALUATE = "evaluate"; // 发圈内容
 
    @Id
    private String id;
    @Field
    @Indexed
    private Long uid;
    @Field
    private Integer robotId;
    @Field
    private String wxId; // 微信id
    @Field
    @Indexed
    private String sendId; // 发送id
    @Field
    private String sendOrigin; // 内容来源
    @Field
    private String goodsId; // 商品id
    @Field
    private String goodsType; // 商品类型
    @Field
    private Integer sendWay; // 发送方式
    @Field
    private Date sendTime; // 发送时间
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public Long getUid() {
        return uid;
    }
 
    public void setUid(Long uid) {
        this.uid = uid;
    }
 
    public String getSendId() {
        return sendId;
    }
 
    public void setSendId(String sendId) {
        this.sendId = sendId;
    }
 
    public String getSendOrigin() {
        return sendOrigin;
    }
 
    public void setSendOrigin(String sendOrigin) {
        this.sendOrigin = sendOrigin;
    }
 
    public Integer getSendWay() {
        return sendWay;
    }
 
    public void setSendWay(Integer sendWay) {
        this.sendWay = sendWay;
    }
 
    public Date getSendTime() {
        return sendTime;
    }
 
    public void setSendTime(Date sendTime) {
        this.sendTime = sendTime;
    }
 
    public String getGoodsId() {
        return goodsId;
    }
 
    public void setGoodsId(String goodsId) {
        this.goodsId = goodsId;
    }
 
    public String getGoodsType() {
        return goodsType;
    }
 
    public void setGoodsType(String goodsType) {
        this.goodsType = goodsType;
    }
 
    public Integer getRobotId() {
        return robotId;
    }
 
    public void setRobotId(Integer robotId) {
        this.robotId = robotId;
    }
 
    public String getWxId() {
        return wxId;
    }
 
    public void setWxId(String wxId) {
        this.wxId = wxId;
    }
}