20 lines
482 B
Go
20 lines
482 B
Go
|
|
package org.nieo.seerproject.common.net.info.misc;
|
||
|
|
|
||
|
|
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 CateInfo {
|
||
|
|
@FieldDescription("物品id")
|
||
|
|
private @UInt long id;
|
||
|
|
@FieldDescription("数量")
|
||
|
|
private @UInt long count;
|
||
|
|
}
|