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
| package com.yeshi.fanli.dto.order;
|
| /**
| * 红包MQ消息
| *
| * @author Administrator
| *
| */
| public class OrderMQMsgDTO {
| private String orderId;
| private Integer type;
| private Long uid;
|
| public OrderMQMsgDTO(String orderId, Integer type, Long uid) {
| this.orderId = orderId;
| this.type = type;
| this.uid = uid;
| }
|
| public OrderMQMsgDTO() {
|
| }
|
|
| 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;
| }
| }
|
|