测试完成

This commit is contained in:
2018-06-10 09:21:52 +08:00
commit 873f1d1090
15 changed files with 703 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package top.fjy8018.websocket.entity;
import lombok.Data;
/**
* @author F嘉阳
* @date 2018-06-09 19:12
*/
@Data
public class ServerMessage {
private String responseMessage;
public ServerMessage(String responseMessage) {
this.responseMessage = responseMessage;
}
}