实时通讯
This commit is contained in:
17
src/main/java/com/realtime/packets/SystemNoticePackets.java
Normal file
17
src/main/java/com/realtime/packets/SystemNoticePackets.java
Normal file
@@ -0,0 +1,17 @@
|
||||
package com.realtime.packets;
|
||||
|
||||
|
||||
import com.realtime.packets.basePackets.BasePackets;
|
||||
import com.realtime.packets.command.Command;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Data
|
||||
public class SystemNoticePackets extends BasePackets {
|
||||
|
||||
@Override
|
||||
public Byte getCommand() {
|
||||
return Command.SYS_NOTICE;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user