|
@@ -16,15 +16,15 @@ public class Block {
|
|
|
* video:视频
|
|
|
*/
|
|
|
private String type;
|
|
|
-
|
|
|
/**
|
|
|
* 资源相对路径
|
|
|
*/
|
|
|
private String value;
|
|
|
-
|
|
|
/**
|
|
|
- * "playCount": 1 //播放次数
|
|
|
+ * 播放次数
|
|
|
*/
|
|
|
+ private Integer playTime;
|
|
|
+
|
|
|
private Map<String,Object> param;
|
|
|
|
|
|
public String getType() {
|
|
@@ -50,6 +50,14 @@ public class Block {
|
|
|
public void setParam(Map<String, Object> param) {
|
|
|
this.param = param;
|
|
|
}
|
|
|
+
|
|
|
+ public Integer getPlayTime() {
|
|
|
+ return playTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPlayTime(Integer playTime) {
|
|
|
+ this.playTime = playTime;
|
|
|
+ }
|
|
|
|
|
|
}
|
|
|
|