浏览代码

。。。。

wangwei 6 年之前
父节点
当前提交
ad35cecb2c
共有 1 个文件被更改,包括 26 次插入0 次删除
  1. 26 0
      src/main/java/cn/com/qmth/examcloud/question/core/question/DefaultQuestion.java

+ 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 String id;
 
 
+	/**
+	 * 属性注释
+	 */
+	private Long rootOrgId;
+
+	/**
+	 * 是否脱离试卷存在
+	 */
+	private Boolean isolated;
+
 	/**
 	/**
 	 * 主版本
 	 * 主版本
 	 */
 	 */
@@ -44,6 +54,22 @@ public class DefaultQuestion implements Question {
 		this.id = id;
 		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
 	@Override
 	public QuestionStructure getMasterVersion() {
 	public QuestionStructure getMasterVersion() {
 		return masterVersion;
 		return masterVersion;