20 lines
501 B
Go
20 lines
501 B
Go
|
|
package org.nieo.seerproject.common.net.info.map;
|
||
|
|
|
||
|
|
import lombok.AllArgsConstructor;
|
||
|
|
import lombok.Builder;
|
||
|
|
import lombok.Data;
|
||
|
|
import lombok.NoArgsConstructor;
|
||
|
|
import org.nieo.seerproject.common.annotations.FieldDescription;
|
||
|
|
import org.nieo.seerproject.common.annotations.serialize.UInt;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
@Builder
|
||
|
|
@NoArgsConstructor
|
||
|
|
@AllArgsConstructor
|
||
|
|
public class MapHotInfo {
|
||
|
|
@FieldDescription("地图ID")
|
||
|
|
private @UInt long mapId;
|
||
|
|
@FieldDescription("地图里有多少人")
|
||
|
|
private @UInt long count;
|
||
|
|
}
|