[Update]增加多屏互动Netty通信library

This commit is contained in:
chenfufeng
2022-02-09 15:34:13 +08:00
parent 1c5b2761bf
commit 2f5c5f9b28
27 changed files with 2114 additions and 15 deletions

View File

@@ -0,0 +1,14 @@
package com.mogo.cloud.netty;
import java.text.SimpleDateFormat;
public class LogBean {
public String mTime;
public String mLog;
public LogBean(long time, String log) {
SimpleDateFormat format = new SimpleDateFormat("HH:mm:ss");
mTime = format.format(time);
mLog = log;
}
}