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;
|
|
}
|