wangwei il y a 6 ans
Parent
commit
ad35cecb2c

+ 26 - 0
src/main/java/cn/com/qmth/examcloud/question/core/question/DefaultQuestion.java

@@ -19,6 +19,16 @@ public class DefaultQuestion implements Question {
 	 */
 	private String id;
 
+	/**
+	 * 属性注释
+	 */
+	private Long rootOrgId;
+
+	/**
+	 * 是否脱离试卷存在
+	 */
+	private Boolean isolated;
+
 	/**
 	 * 主版本
 	 */
@@ -44,6 +54,22 @@ public class DefaultQuestion implements Question {
 		this.id = id;
 	}
 
+	public Long getRootOrgId() {
+		return rootOrgId;
+	}
+
+	public void setRootOrgId(Long rootOrgId) {
+		this.rootOrgId = rootOrgId;
+	}
+
+	public Boolean getIsolated() {
+		return isolated;
+	}
+
+	public void setIsolated(Boolean isolated) {
+		this.isolated = isolated;
+	}
+
 	@Override
 	public QuestionStructure getMasterVersion() {
 		return masterVersion;