Sfoglia il codice sorgente

增加playTime字段

chenken 7 anni fa
parent
commit
fed34c8ce1

+ 11 - 3
cqb-paper/src/main/java/com/qmth/cqb/paper/model/computerTestModel/Block.java

@@ -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;
+	}
 	
 }