|
|
@@ -1,6 +1,9 @@
|
|
|
package com.izouma.meta.domain;
|
|
|
|
|
|
|
|
|
+import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.AllArgsConstructor;
|
|
|
import lombok.Builder;
|
|
|
import lombok.Data;
|
|
|
@@ -17,46 +20,75 @@ import java.util.Objects;
|
|
|
@Entity
|
|
|
@Table(name = "meta_mmo_login_info")
|
|
|
@Builder
|
|
|
+@ApiModel("元宇宙玩家登陆信息")
|
|
|
public class MetaMMOLoginInfo extends BaseEntity {
|
|
|
|
|
|
+ @ApiModelProperty("昵称")
|
|
|
+ @ExcelProperty("昵称")
|
|
|
private String nickname;
|
|
|
|
|
|
+ @ApiModelProperty("用户id")
|
|
|
+ @ExcelProperty("用户id")
|
|
|
private Long userId;
|
|
|
|
|
|
+ @ApiModelProperty("区域id")
|
|
|
+ @ExcelProperty("区域id")
|
|
|
private Long regionId;
|
|
|
|
|
|
+ @ApiModelProperty("城市id")
|
|
|
+ @ExcelProperty("城市id")
|
|
|
private Long cityId;
|
|
|
|
|
|
+ @ApiModelProperty("上线时间")
|
|
|
+ @ExcelProperty("上线时间")
|
|
|
private LocalDateTime onLineTime;
|
|
|
|
|
|
+ @ApiModelProperty("离线时间")
|
|
|
+ @ExcelProperty("离线时间")
|
|
|
private LocalDateTime offLineTime;
|
|
|
|
|
|
+ @ApiModelProperty("sessionId")
|
|
|
+ @ExcelProperty("sessionId")
|
|
|
private String sessionId;
|
|
|
|
|
|
+ @ApiModelProperty("角色")
|
|
|
+ @ExcelProperty("角色")
|
|
|
private String role;
|
|
|
|
|
|
+ @ExcelProperty("axisX")
|
|
|
private Float axisX;
|
|
|
|
|
|
+ @ExcelProperty("axisY")
|
|
|
private Float axisY;
|
|
|
|
|
|
+ @ExcelProperty("axisZ")
|
|
|
private Float axisZ;
|
|
|
|
|
|
+ @ExcelProperty("eulerX")
|
|
|
private Float eulerX;
|
|
|
|
|
|
+ @ExcelProperty("eulerY")
|
|
|
private Float eulerY;
|
|
|
|
|
|
+ @ExcelProperty("eulerZ")
|
|
|
private Float eulerZ;
|
|
|
|
|
|
+ @ExcelProperty("top")
|
|
|
private int top;
|
|
|
|
|
|
+ @ExcelProperty("hat")
|
|
|
private int hat;
|
|
|
|
|
|
+ @ExcelProperty("down")
|
|
|
private int down;
|
|
|
|
|
|
+ @ExcelProperty("shoes")
|
|
|
private int shoes;
|
|
|
|
|
|
+ @ExcelProperty("anim")
|
|
|
private int anim;
|
|
|
|
|
|
+ @ExcelProperty("emoji")
|
|
|
private int emoji;
|
|
|
|
|
|
/**
|