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
| package org.jeecg.modules.message.entity;
|
| import java.io.Serializable;
|
| import lombok.Data;
|
| /**
| * 发送消息实体
| * @author: jeecg-boot
| */
| @Data
| public class MsgParams implements Serializable {
|
| private static final long serialVersionUID = 1L;
| /**
| * 消息类型
| */
| private String msgType;
|
| /**
| * 消息接收方
| */
| private String receiver;
|
| /**
| * 消息模板码
| */
| private String templateCode;
|
| /**
| * 测试数据
| */
| private String testData;
|
| }
|
|