1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.oying.modules.maint.service.websocket;
|
| import com.oying.modules.maint.domain.enums.MsgType;
| import lombok.Data;
|
| /**
| * @author Z
| * @date 2019-08-10 9:55
| */
| @Data
| public class SocketMsg {
| private String msg;
| private MsgType msgType;
|
| public SocketMsg(String msg, MsgType msgType) {
| this.msg = msg;
| this.msgType = msgType;
| }
| }
|
|