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 {
*/
private Integer duration;
/**
* 比赛用时(秒)
*/
private Integer millisecond;
/**
* 比赛名次
*/
......
......@@ -63,6 +63,11 @@ public class SeriesMatchPlayerRecord implements Serializable {
*/
private Integer duration;
/**
* 比赛用时(秒)
*/
private Integer millisecond;
/**
* 比赛名次
*/
......
......@@ -53,6 +53,11 @@ public class SimpleMatchPlayerRecord implements Serializable {
*/
private Integer duration;
/**
* 比赛用时(秒)
*/
private Integer millisecond;
/**
* 比赛名次
*/
......
......@@ -80,6 +80,11 @@ public class SportUserTrainingLog implements Serializable {
*/
private Integer duration;
/**
* 比赛用时(秒)
*/
private Integer millisecond;
/**
* 比赛名次
*/
......
......@@ -53,6 +53,11 @@ public class TeamTrainingPlayerRecord implements Serializable {
*/
private Integer duration;
/**
* 比赛用时(秒)
*/
private Integer millisecond;
/**
* 比赛名次
*/
......
......@@ -21,6 +21,8 @@ public class TrainingDetailRankVO {
private Integer gameRank;
@ApiModelProperty("用时(秒)")
private Integer duration;
@ApiModelProperty("用时(毫秒)")
private Integer millisecond;
@ApiModelProperty("骑行总长度")
private BigDecimal distance;
@ApiModelProperty("爬坡高度")
......
......@@ -20,6 +20,8 @@ public class CyclingDataDTO {
private Long recordId;
@ApiModelProperty("用时(秒)")
private Integer duration;
@ApiModelProperty("毫秒")
private Integer millisecond;
@ApiModelProperty("骑行总长度")
private BigDecimal distance;
@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