44323
2024-05-24 82d0f09da0e5f58b3bbaeafdd3d4bf00cbde73d7
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
51
52
53
54
55
56
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;
 
    /**
     * 完成听故事、完成游戏、完成答题、完成每日学习、商城消费
     */
    @ApiModelProperty("完成听故事、完成游戏、完成答题、完成每日学习、商城消费")
    private String method;
 
}