|
@@ -28,6 +28,16 @@ public class DefaultQuestionStructureWrapper implements QuestionStructureWrapper
|
|
|
*/
|
|
|
private Float questionScore;
|
|
|
|
|
|
+ /**
|
|
|
+ * 限制播放次数
|
|
|
+ */
|
|
|
+ private Integer limitedPlayTimes;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 已播放次数
|
|
|
+ */
|
|
|
+ private Integer playedTimes;
|
|
|
+
|
|
|
/**
|
|
|
* 题单元包装器
|
|
|
*/
|
|
@@ -70,4 +80,20 @@ public class DefaultQuestionStructureWrapper implements QuestionStructureWrapper
|
|
|
this.version = version;
|
|
|
}
|
|
|
|
|
|
+ public Integer getLimitedPlayTimes() {
|
|
|
+ return limitedPlayTimes;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLimitedPlayTimes(Integer limitedPlayTimes) {
|
|
|
+ this.limitedPlayTimes = limitedPlayTimes;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getPlayedTimes() {
|
|
|
+ return playedTimes;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPlayedTimes(Integer playedTimes) {
|
|
|
+ this.playedTimes = playedTimes;
|
|
|
+ }
|
|
|
+
|
|
|
}
|