xiatian 2 vuotta sitten
vanhempi
commit
8491c0ef75

+ 13 - 0
examcloud-core-questions-api/src/main/java/cn/com/qmth/examcloud/core/questions/api/request/GetRandomPaperReq.java

@@ -11,6 +11,11 @@ public class GetRandomPaperReq extends BaseRequest {
 	 */
 	private String randomPaperId;
 
+	/**
+	 * 播放次数限制
+	 */
+	private Integer playTime;
+
 	public String getRandomPaperId() {
 		return randomPaperId;
 	}
@@ -19,4 +24,12 @@ public class GetRandomPaperReq extends BaseRequest {
 		this.randomPaperId = randomPaperId;
 	}
 
+	public Integer getPlayTime() {
+		return playTime;
+	}
+
+	public void setPlayTime(Integer playTime) {
+		this.playTime = playTime;
+	}
+
 }