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; } }