|
@@ -6,6 +6,7 @@ import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.yonge.cooleshow.biz.dal.enums.ClientEnum;
|
|
|
+import com.yonge.cooleshow.biz.dal.enums.activity.ActivityRankingMethodEnum;
|
|
|
import com.yonge.cooleshow.biz.dal.enums.activity.ActivityRankingRuleEnum;
|
|
|
import com.yonge.cooleshow.common.enums.ActivityTypeEnum;
|
|
|
import com.yonge.cooleshow.common.enums.RegistrationMethodEnum;
|
|
@@ -118,6 +119,14 @@ public class ActivityPlan implements Serializable {
|
|
|
@TableField(value = "ranking_rule_")
|
|
|
private ActivityRankingRuleEnum rankingRule;
|
|
|
|
|
|
+ @ApiModelProperty("活动形式: MUSIC_RANKING(单曲排名) TOTAL_SCORE(总分排名) ")
|
|
|
+ @TableField(value = "ranking_method_")
|
|
|
+ private ActivityRankingMethodEnum rankingMethod;
|
|
|
+
|
|
|
+ @ApiModelProperty("获奖分数 ")
|
|
|
+ @TableField(value = "ranking_score_")
|
|
|
+ private Double rankingScore;
|
|
|
+
|
|
|
public Long getId() {
|
|
|
return id;
|
|
|
}
|
|
@@ -317,4 +326,20 @@ public class ActivityPlan implements Serializable {
|
|
|
public void setRankingRule(ActivityRankingRuleEnum rankingRule) {
|
|
|
this.rankingRule = rankingRule;
|
|
|
}
|
|
|
+
|
|
|
+ public ActivityRankingMethodEnum getRankingMethod() {
|
|
|
+ return rankingMethod;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRankingMethod(ActivityRankingMethodEnum rankingMethod) {
|
|
|
+ this.rankingMethod = rankingMethod;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Double getRankingScore() {
|
|
|
+ return rankingScore;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRankingScore(Double rankingScore) {
|
|
|
+ this.rankingScore = rankingScore;
|
|
|
+ }
|
|
|
}
|