admin
2020-06-10 271ae63c20fcbe28d29c47f1881138ff6551a2a1
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
package com.yeshi.fanli.dto.mq.user.body;
 
import com.yeshi.fanli.dto.mq.BaseMQMsgBody;
 
public class UserRedPackGiftMQMsg extends BaseMQMsgBody {
    private Long id;// 红包ID
    private Long uid;// 用户ID
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getUid() {
        return uid;
    }
 
    public void setUid(Long uid) {
        this.uid = uid;
    }
 
}