1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package org.jeecg.modules.message.entity;
|
| import java.io.Serializable;
|
| import lombok.Data;
|
| /**
| * 发送消息实体
| */
| @Data
| public class MsgParams implements Serializable {
|
| private static final long serialVersionUID = 1L;
| /*消息类型*/
| private String msgType;
| /*消息接收方*/
| private String receiver;
| /*消息模板码*/
| private String templateCode;
| /*测试数据*/
| private String testData;
|
| }
|
|