hjl
2024-06-06 81714ac84eb9cf515c0dbf701b5b87d02bafb6bd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package com.ruoyi.study.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author HJL
 * @version 1.0
 * @since 2024-05-20 14:04
 */
@Data
public class CompleteGameDTO {
 
    /**
     * 游戏难度(0入门、1中级、2高级)
     */
    @ApiModelProperty("游戏难度(0入门、1中级、2高级)")
    private Integer difficulty;
 
    /**
     * 游戏id
     */
    @ApiModelProperty("游戏id")
    private Integer gameId;
 
    /**
     * 用时时间 秒
     */
    @ApiModelProperty("用时时间 秒")
    private Integer useTime;
 
    /**
     * 游戏名称
     */
    @ApiModelProperty("游戏名称")
    private String gameName;
 
    /**
     * 正确率
     */
    @ApiModelProperty("正确率")
    private Integer accuracy;
 
    /**
     * 根据正确率计算可获得积分数量
     */
    @ApiModelProperty("根据正确率计算可获得积分数量")
    private Integer availableIntegral;
 
}