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
| package org.jeecg.common.api.dto.message;
|
| import lombok.Data;
|
| import java.io.Serializable;
|
| /**
| * 带业务参数的消息
| *
| * @author: taoyan
| * @date: 2022/8/17
| */
| @Data
| public class BusMessageDTO extends MessageDTO implements Serializable {
|
| private static final long serialVersionUID = 9104793287983367669L;
| /**
| * 业务类型
| */
| private String busType;
|
| /**
| * 业务id
| */
| private String busId;
|
| public BusMessageDTO(){
|
| }
|
| /**
| * 构造 带业务参数的消息
| * @param fromUser
| * @param toUser
| * @param title
| * @param msgContent
| * @param msgCategory
| * @param busType
| * @param busId
| */
| public BusMessageDTO(String fromUser, String toUser, String title, String msgContent, String msgCategory, String busType, String busId){
| super(fromUser, toUser, title, msgContent, msgCategory);
| this.busId = busId;
| this.busType = busType;
| }
| }
|
|