yujian
2019-11-04 148af6b2f57be264c84d0991237fbd7ddea491a4
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
package com.yeshi.fanli.dto.mq.order.body;
 
import com.yeshi.fanli.dto.mq.BaseMQMsgBody;
 
/**
 * 红包MQ消息
 * 
 * @author Administrator
 *
 */
public class OrderMQMsg extends BaseMQMsgBody{
    private String orderId;
    private Integer type;
    private Long uid;
 
    public OrderMQMsg(String orderId, Integer type, Long uid) {
        super();
        this.orderId = orderId;
        this.type = type;
        this.uid = uid;
    }
    
    public OrderMQMsg() {
        super();
    }
 
 
    public String getOrderId() {
        return orderId;
    }
 
    public void setOrderId(String orderId) {
        this.orderId = orderId;
    }
 
    public Integer getType() {
        return type;
    }
 
    public void setType(Integer type) {
        this.type = type;
    }
 
    public Long getUid() {
        return uid;
    }
 
    public void setUid(Long uid) {
        this.uid = uid;
    }
}