Commit 96874fa7 authored by liming's avatar liming

调整是否需要短信验证码

parent cddade8b
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -43,6 +43,11 @@ public class RoomModePlayerRecord implements Serializable { ...@@ -43,6 +43,11 @@ public class RoomModePlayerRecord implements Serializable {
*/ */
private Integer duration; private Integer duration;
/**
* 比赛用时(秒)
*/
private Integer millisecond;
/** /**
* 比赛名次 * 比赛名次
*/ */
......
...@@ -63,6 +63,11 @@ public class SeriesMatchPlayerRecord implements Serializable { ...@@ -63,6 +63,11 @@ public class SeriesMatchPlayerRecord implements Serializable {
*/ */
private Integer duration; private Integer duration;
/**
* 比赛用时(秒)
*/
private Integer millisecond;
/** /**
* 比赛名次 * 比赛名次
*/ */
......
...@@ -53,6 +53,11 @@ public class SimpleMatchPlayerRecord implements Serializable { ...@@ -53,6 +53,11 @@ public class SimpleMatchPlayerRecord implements Serializable {
*/ */
private Integer duration; private Integer duration;
/**
* 比赛用时(秒)
*/
private Integer millisecond;
/** /**
* 比赛名次 * 比赛名次
*/ */
......
...@@ -80,6 +80,11 @@ public class SportUserTrainingLog implements Serializable { ...@@ -80,6 +80,11 @@ public class SportUserTrainingLog implements Serializable {
*/ */
private Integer duration; private Integer duration;
/**
* 比赛用时(秒)
*/
private Integer millisecond;
/** /**
* 比赛名次 * 比赛名次
*/ */
......
...@@ -53,6 +53,11 @@ public class TeamTrainingPlayerRecord implements Serializable { ...@@ -53,6 +53,11 @@ public class TeamTrainingPlayerRecord implements Serializable {
*/ */
private Integer duration; private Integer duration;
/**
* 比赛用时(秒)
*/
private Integer millisecond;
/** /**
* 比赛名次 * 比赛名次
*/ */
......
...@@ -21,6 +21,8 @@ public class TrainingDetailRankVO { ...@@ -21,6 +21,8 @@ public class TrainingDetailRankVO {
private Integer gameRank; private Integer gameRank;
@ApiModelProperty("用时(秒)") @ApiModelProperty("用时(秒)")
private Integer duration; private Integer duration;
@ApiModelProperty("用时(毫秒)")
private Integer millisecond;
@ApiModelProperty("骑行总长度") @ApiModelProperty("骑行总长度")
private BigDecimal distance; private BigDecimal distance;
@ApiModelProperty("爬坡高度") @ApiModelProperty("爬坡高度")
......
...@@ -20,6 +20,8 @@ public class CyclingDataDTO { ...@@ -20,6 +20,8 @@ public class CyclingDataDTO {
private Long recordId; private Long recordId;
@ApiModelProperty("用时(秒)") @ApiModelProperty("用时(秒)")
private Integer duration; private Integer duration;
@ApiModelProperty("毫秒")
private Integer millisecond;
@ApiModelProperty("骑行总长度") @ApiModelProperty("骑行总长度")
private BigDecimal distance; private BigDecimal distance;
@ApiModelProperty("爬坡高度") @ApiModelProperty("爬坡高度")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment