package com.ruoyi.study.api.vo; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @Data @ApiModel(value = "游戏数据VO") public class UserGameRecordVO { @ApiModelProperty(value = "游戏时间") private Integer time; @ApiModelProperty(value = "游戏名称") private String gameName; @ApiModelProperty(value = "用时时间") private String useTime; @ApiModelProperty(value = "正确率") private String accuracy; }