package com.rongyichuang.player.dto.response;
|
|
/**
|
* 项目阶段时间轴条目响应
|
*/
|
public class ProjectStageTimelineItemResponse {
|
|
private Long stageId;
|
private String stageName;
|
private String matchTime;
|
private Integer sortOrder;
|
private boolean participated;
|
private Long activityPlayerId;
|
private Double averageScore;
|
private Integer ratingCount = 0;
|
private boolean hasRating;
|
private String latestRatingTime;
|
|
public Long getStageId() {
|
return stageId;
|
}
|
|
public void setStageId(Long stageId) {
|
this.stageId = stageId;
|
}
|
|
public String getStageName() {
|
return stageName;
|
}
|
|
public void setStageName(String stageName) {
|
this.stageName = stageName;
|
}
|
|
public String getMatchTime() {
|
return matchTime;
|
}
|
|
public void setMatchTime(String matchTime) {
|
this.matchTime = matchTime;
|
}
|
|
public Integer getSortOrder() {
|
return sortOrder;
|
}
|
|
public void setSortOrder(Integer sortOrder) {
|
this.sortOrder = sortOrder;
|
}
|
|
public boolean isParticipated() {
|
return participated;
|
}
|
|
public void setParticipated(boolean participated) {
|
this.participated = participated;
|
}
|
|
public Long getActivityPlayerId() {
|
return activityPlayerId;
|
}
|
|
public void setActivityPlayerId(Long activityPlayerId) {
|
this.activityPlayerId = activityPlayerId;
|
}
|
|
public Double getAverageScore() {
|
return averageScore;
|
}
|
|
public void setAverageScore(Double averageScore) {
|
this.averageScore = averageScore;
|
}
|
|
public Integer getRatingCount() {
|
return ratingCount;
|
}
|
|
public void setRatingCount(Integer ratingCount) {
|
this.ratingCount = ratingCount;
|
}
|
|
public boolean isHasRating() {
|
return hasRating;
|
}
|
|
public void setHasRating(boolean hasRating) {
|
this.hasRating = hasRating;
|
}
|
|
public String getLatestRatingTime() {
|
return latestRatingTime;
|
}
|
|
public void setLatestRatingTime(String latestRatingTime) {
|
this.latestRatingTime = latestRatingTime;
|
}
|
}
|