hjl
2024-05-21 f0d8f535a4c09dee9d786d8fb13c9b9918addaa9
ruoyi-service/ruoyi-study/src/main/java/com/ruoyi/study/domain/TGameRecord.java
@@ -30,20 +30,35 @@
     * 用户id
     */
    @ApiModelProperty(value = "用户id")
    private Integer userId;/**
    private Integer userId;
    /**
     * /**
     * 正确率
     */
    @ApiModelProperty(value = "正确率")
    private Integer accuracy;/**
    private Integer accuracy;
    /**
     * 游戏名称
     */
    @ApiModelProperty(value = "游戏名称")
    private String gameName;/**
    private String gameName;
    /**
     * 用时时间 秒
     */
    @ApiModelProperty(value = "用时时间 秒")
    private Integer useTime;
    /**
     * 游戏Id
     */
    @ApiModelProperty(value = "游戏Id")
    private Integer gameId;
    /**
     * 游戏难度(0入门、1中级、2高级)
     */
    @ApiModelProperty(value = "游戏难度(0入门、1中级、2高级)")
    private Integer gameDifficulty;
}