yujian
2020-06-18 52bc8ff0de3c7538d1401423c1cba9615c0c2082
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
package com.yeshi.fanli.dto.mq.user.body;
 
import com.yeshi.fanli.dto.mq.BaseMQMsgBody;
 
/**
 * 用户云发单
 * 
 * @author Administrator
 *
 */
public class UserCloudMQMsg extends BaseMQMsgBody {
    
    public final static int TYPE_STORE = 1; // 商品库
    public final static int TYPE_EVALUATE = 2; // 发圈内容
    public final static int TYPE_PUSH = 3; // 站内推送消息
    
    private Long uid;// 用户ID
    private String id;// 发圈id 、 商品库id
    private Integer type;// 类型
 
    public UserCloudMQMsg(Long uid, Integer type) {
        super();
        this.uid = uid;
        this.type = type;
    }
    
    public UserCloudMQMsg(Long uid, String id, Integer type) {
        super();
        this.uid = uid;
        this.id = id;
        this.type = type;
    }
 
    public Long getUid() {
        return uid;
    }
 
    public void setUid(Long uid) {
        this.uid = uid;
    }
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public Integer getType() {
        return type;
    }
 
    public void setType(Integer type) {
        this.type = type;
    }
 
     
}